Update of /cvsroot/binaryphp/binaryphp/examples
In directory sc8-pr-cvs1:/tmp/cvs-serv29274/examples
Modified Files:
helloworld.php
Log Message:
Fixed multiple parameter parsing.
Index: helloworld.php
===================================================================
RCS file: /cvsroot/binaryphp/binaryphp/examples/helloworld.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** helloworld.php 5 Aug 2003 00:48:39 -0000 1.1
--- helloworld.php 8 Aug 2003 06:59:06 -0000 1.2
***************
*** 1,3 ****
<?php
! echo 'Hello World', "\n";
?>
--- 1,3 ----
<?php
! echo 'Hello World', "\n", 'bleh++';
?>
|