Re: [PHP] while statements output to variables

2001-05-23 Thread David Robley
On Thu, 24 May 2001 10:40, adam wrote: > i need to write a while statement to a variable that will later be > echoed again on another page after including this file to it. i need to > repeat a statement over and over in it and i do not know how. > > > > $variable = ' > > ' . > > do { > 'data

[PHP] while statements output to variables

2001-05-23 Thread adam
i need to write a while statement to a variable that will later be echoed again on another page after including this file to it. i need to repeat a statement over and over in it and i do not know how. ' . do { 'data to be outputted' }while ($something = mysql_fetch_array($query)); .' ';