View Single Post
06-16-2008, 10:49 PM
#3
Jme is offline Jme
Status: I'm new around here
Join date: Apr 2008
Location:
Expertise:
Software:
 
Posts: 12
iTrader: 0 / 0%
 

Jme is on a distinguished road

  Old

Basically what was said above but for instance if you wanted to write out a 5x table it'd be something like..

PHP Code:
for($i=1;$i<11;i++)
{
echo 
"5 x " $i " = " 5*$i "<br />";
}
//For loop

$i 1;
while(
$i<11)
{
echo 
"5 x " $i " = " 5*$i "<br />";
$i++;
}
//While Loop 
Thats basically it, same as javascript and most other languages.