[Database class] echo.php source code
Paul S. Wang
pwang at cs.kent.edu
Thu Feb 10 11:11:12 EST 2011
Dear database class,
Here is a php source file you can use for testing.
(1) Save it to a file called echo.php
(2) Make it executable
chmod a+x echo.php
(3) Invoke it
./echo.php one two three
Paul
--
==============================================================================
Paul S. Wang Email: pwang at cs.kent.edu
Director of Research, ICM/Kent Tel: (330) 672-9051
Dept. of Computer Science, Kent State U. FAX: (330) 672-2725
Kent, Ohio, USA 44242-0001 http://www.cs.kent.edu/~pwang/
Institute for Computational Email: icm at mcs.kent.edu
Mathematics (ICM) http://icm.mcs.kent.edu/
==============================================================================
-------------- next part --------------
#!/usr/bin/php
<?php
foreach ($argv as $x)
{ echo "$x "; }
echo "\n";
?>
More information about the Dbclass
mailing list