--- 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
;Cesar Aracena" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, January 20, 2003 9:37 AM
Subject: [PHP] Loop inside a table
Hi all,
I always make for loops inside tables so I usually don't have problems
with it, but this case is a little different. I'm making a
Hi all,
I always make for loops inside tables so I usually don't have problems
with it, but this case is a little different. I'm making a mail program
for my client to receive a mail each time a customer places an order in
his site.
Inside the mail program, I declaring a value called $message whe
4 matches
Mail list logo