4:14 am GMT
Examples
Examples » PHP (brief)
<?php
// Simple code example with php-brief
$foo = rand(0, 99);
if ( $foo > 50 )
{
echo "That's a big number";
}
elseif ( $foo > 20 )
{
print("That number is pretty average...");
}
else
{
printf("That number %s", "is TINY!");
}
?>
This category contains 2
examples, and has been viewed 118137 times.
|