From: <da...@us...> - 2003-08-10 01:42:57
|
Update of /cvsroot/binaryphp/binaryphp/examples In directory sc8-pr-cvs1:/tmp/cvs-serv21173/examples Modified Files: helloworld.php Log Message: For and If support. Index: helloworld.php =================================================================== RCS file: /cvsroot/binaryphp/binaryphp/examples/helloworld.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** helloworld.php 9 Aug 2003 05:57:13 -0000 1.4 --- helloworld.php 10 Aug 2003 01:42:54 -0000 1.5 *************** *** 1,3 **** <?php ! echo strlen('bleh!'); ?> --- 1,4 ---- <?php ! for($i = 0; $i < 50; ++$i) ! echo $i, "\n"; ?> |