Re: [PHP] Compution of Fibonacci

2001-07-31 Thread Saquib Farooq
On Tue, 31 Jul 2001, Stig Venaas wrote: > On Tue, Jul 31, 2001 at 11:59:07AM +0500, Saquib Farooq wrote: > > hi > > > > well first of all you have to remove the colon -- ";" sign from > > the end of your while loop .. that will solve the problem for the time > > out. > > then there

Re: [PHP] Compution of Fibonacci

2001-07-30 Thread Stig Venaas
On Tue, Jul 31, 2001 at 11:59:07AM +0500, Saquib Farooq wrote: > hi > > well first of all you have to remove the colon -- ";" sign from > the end of your while loop .. that will solve the problem for the time > out. > then there is problem with your code, this code will never get

Re: [PHP] Compution of Fibonacci

2001-07-30 Thread Saquib Farooq
sorry i said to remove the colon sign from the end of the while loop, what i meant was to remove the colon sign from the end of your while statement :). plus it looks better to change the $c=1 to $b=1 On Tue, 31 Jul 2001, Saquib Farooq wrote: > hi > > well first of all you have to remove

Re: [PHP] Compution of Fibonacci

2001-07-30 Thread Muhv
Hi, Remove the ; after while! With ; while will loop only this line Muhv > my code: > > $i=0; > $a=0; > $b=0; > $c=0; > while ($i < 17); > { > print ""; > print "$i"; > $a=$c+$b; > print "$a"; > $b=$a; > $c=$b; > $i++; > } > ?> > -- > Thanks. >

Re: [PHP] Compution of Fibonacci

2001-07-30 Thread Saquib Farooq
hi well first of all you have to remove the colon -- ";" sign from the end of your while loop .. that will solve the problem for the time out. then there is problem with your code, this code will never get you the fibonacci since the variable a,b and c never go abone 0, see. :

Re: [PHP] Compution of Fibonacci

2001-07-30 Thread Pip Taylor
. Experiment with the value until your script can complete. However, be warned that making the time too long could make your system unresponsive! Pip - Original Message - From: "marke" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 31, 2001 7:48 AM Subje

[PHP] Compution of Fibonacci

2001-07-30 Thread marke
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 finishe