source: Dev/branches/jos-branch/testpage.php @ 211

Last change on this file since 211 was 208, checked in by jkraaijeveld, 13 years ago

Got latest version from trunk. Ready to reorganise.

File size: 211 bytes
Line 
1<?php
2    require 'classes/master.php';
3
4        $db = new DatabaseInterface();
5       
6        $result = $db->get("Session");
7        $session = $result[0];
8        $session->title = "Changed title";
9        $db->set($session);
10        print_r($result);
11
12?>
Note: See TracBrowser for help on using the repository browser.