PDA

View Full Version : PHP help



hale88
11-26-2009, 08:04 AM
FYI, Here is what I got (big thanks to FordGT90Concept at TPU)


print "Use While loop to calculate the sum: 1-10:";
print "<br/>";
$number = 1;
$total = 0;

for ($number =1; $number <= 10; $number++)
{
print "$number <br/>" ;

$total += $number;
}
Print "The Total is :$total";



hale

faster3200
12-01-2009, 02:20 PM
So... what do you need help with or did you solve it already?

Edward88
12-03-2009, 03:47 PM
so ???

hale88
12-04-2009, 09:56 PM
I already solved it. However new one is up

thaks