Re: [PHP] doubt regarding while loop

2006-01-27 Thread David Grant
Suresh, suresh kumar wrote: hi, for eg while(list(t1,t2,...)=mysql_fetch_row($result)): endwhile; You could start with list($t1, $t2, ...) instead. Personally, I'd done it without assuming mysql_fetch_row is returning an array.

[PHP] doubt regarding while loop

2006-01-27 Thread suresh kumar
hi, for eg while(list(t1,t2,...)=mysql_fetch_row($result)): endwhile; while i use $t1 ouside while loop ,its corresponding value is not displaying,how can i display the value of $t1.