--- 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 = "
, 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
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
3 matches
Mail list logo