Update of /cvsroot/binaryphp/binaryphp/examples
In directory sc8-pr-cvs1:/tmp/cvs-serv27510/examples
Modified Files:
helloworld.php
Log Message:
Fixed 'hello world' example.
Index: helloworld.php
===================================================================
RCS file: /cvsroot/binaryphp/binaryphp/examples/helloworld.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** helloworld.php 14 Aug 2003 16:40:17 -0000 1.6
--- helloworld.php 14 Aug 2003 16:58:03 -0000 1.7
***************
*** 1,9 ****
<?php
! $foo = 'bar';
! if($foo == 'bar')
! echo 'bleh';
! elseif($foo == 'bleh')
! echo 'bleh++';
! else
! echo 'boo!';
! ?>
\ No newline at end of file
--- 1,3 ----
<?php
! echo 'Hello, World!';
! ?>
|