Re: [PHP] Loop inside a table

2003-01-20 Thread Chris Shiflett
--- Cesar Aracena <[EMAIL PROTECTED]> wrote: > $message = " > > > > title goes here > > > ". > for ($x = 0; $x < $num_rows; $x++) > { > //several lines made dynamically > } > .." > > ; Try something like this instead, if you want all of your HTML to be in the $message variable: $message = "

RE: [PHP] Loop inside a table

2003-01-20 Thread Cesar Aracena
, 20 de enero de 2003 14:41 Para: Cesar Aracena; [EMAIL PROTECTED] Asunto: Re: [PHP] Loop inside a table instead of doing that your should do this $message = " title goes here "; for ($x = 0; $x < $num_rows; $x++) { $message .= "some stuff"; } $message .= " &q

Re: [PHP] Loop inside a table

2003-01-20 Thread Jim Lucas
instead of doing that your should do this $message = " title goes here "; for ($x = 0; $x < $num_rows; $x++) { $message .= "some stuff"; } $message .= " "; you were also missing your last double quote. Jim - Original Message - From: "Cesar Aracena" <[EMAIL PROTECTED]> To: <[EMAIL