hi!
i want to write a php script for Compution of Fibonacci(it is a integer
equal the sum of 2 numbers befor it).but there's a error:"Fatal error:
Maximum execution time of 30 seconds exceeded in C:\phpscr\Fibonacci.php
on line 6".i don't know why it happens.it looks like the loop can't be
finished.
 
my code:
--------------------
<?
$i=0;
$a=0;
$b=0;
$c=0;
while ($i < 17);
{
print "<table>";
print "<tr><td>$i</td>";
$a=$c+$b;
print "<td>$a</td></tr>";
$b=$a;
$c=$b;
$i++;
}
?>
----------------------
Thanks.

Reply via email to