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

The Start of PHP

I have begun an online class with my local community college.  I thought I should try every way possible to learn web development.  The class I am in is PHP and MySQL.  I have some prior training but never put it into use so I figured I would post some of the class work that we have on this site.

This is the first very simple class work assignment but here we go.

First Assignment

I made the link open in a new window because I do not have any navigation build on that page, in case you are wondering.