4:31 pm GMT
Examples
Examples » PHP
<?php
/* A simple php script */
$choice = $_GET['foo'];
if ( $choice == 1 )
{
echo 'You like coffee!';
}
elseif ( $choice == 2 )
{
echo 'I said, "You like coffee!"';
}
echo "<br />\"Isn't coffee horrible though?\"";
?>
This category contains 2
examples, and has been viewed 204699 times.
- Index of phpBB - The source to the index page of phpBB (64176 views)
- Coffee!! - A simple PHP example (33480 views)
|