blob: a7c43474f9c71d86cc940322c8884c22ae088ee4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?
// Load module and PHP classes.
include("example.php");
echo "Got new object\n";
echo "Got string $s and value $x \n";
$s = new Sync();
echo "Got new object\n";
$s->printer();
?>
|