It has been a while since I have updated. I have finished my first class, and will soon be taking my next class. I am going to try and put the class work up on this site at some time. Until then, here is a little something for the refrigerator Certificate.
Tag Archives: PHP
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
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.
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.