/trunk/Examples/php/sync/runme.php
PHP | 15 lines | 8 code | 6 blank | 1 comment | 0 complexity | 954004e01e8c0aba98b6832067674bd6 MD5 | raw file
1<? 2 3// Load module and PHP classes. 4include("example.php"); 5 6echo "Got new object\n"; 7echo "Got string $s and value $x \n"; 8 9$s = new Sync(); 10echo "Got new object\n"; 11 12$s->printer(); 13 14?> 15