Update of /cvsroot/binaryphp/binaryphp/examples
In directory sc8-pr-cvs1:/tmp/cvs-serv24741/examples
Modified Files:
helloworld.php
Log Message:
Added variable support.
Index: helloworld.php
===================================================================
RCS file: /cvsroot/binaryphp/binaryphp/examples/helloworld.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** helloworld.php 8 Aug 2003 06:59:06 -0000 1.2
--- helloworld.php 9 Aug 2003 03:58:34 -0000 1.3
***************
*** 1,3 ****
<?php
! echo 'Hello World', "\n", 'bleh++';
! ?>
--- 1,5 ----
<?php
! $var = 'bleh';
! $var = 'foo';
! echo $var;
! ?>
\ No newline at end of file
|