Some More PHP

Second lesson in the PHP class, it took a little more time to try and condense the factorial code to as small as I could make it but I eventually came up with this.

<?php

$number = rand(1,10);
$factorial = 1;

for ($counter = 1;$counter <= $number;$counter++)
{
$factorial = $factorial * $counter;
}
echo “The factorial of $number is $factorial”;

?>

Seems to work

Second Lesson