Problem solved, thanks Richard...

..You had my solution, but I don't know if it was entirely what you said...
As it turns out, it makes a difference that my $message variable was
enclosed only in single quotes, not double quotes...  who knew?

"Chase" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> That didn't seem to work Richard...  Now this is what my resulting email
> looks like...
> Submit Date: $submit_date
>
> IP Address: $ip_address
>
> Dealer Number: $dealer_number
>
> Employee Name: $tester_name
>
> Module / Screen Name: $module_name
>
> Report:
> $report
>
> "Richard Davey" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > Hello Chase,
> >
> > Wednesday, February 25, 2004, 5:26:14 AM, you wrote:
> >
> > C> None of the variables that are displayed on the result page or
> > C> injected into the database are showing in the email that I receive
> > C> from the form.
> >
> > C> $message = '
> > C> <html>
> > C> <body>
> > C> <p>The following information was added to the v5 tracking record:</p>
> > C> <p><strong>Submit Date: <? echo $submit_date; ?></strong><br>
> > C>   <strong>IP Address: <? echo $ip_address; ?><br>
> >
> > You shouldn't be echo'ing from inside a variable! Try this instead:
> >
> > $message = "
> > <html>
> > <body>
> > <p>The following information was added to the v5 tracking record:</p>
> > <p><strong>Submit Date: $submit_date</strong><br>
> > <strong>IP Address: $ip_address<br>
> > ";
> >
> > etc.. you get the idea.
> >
> > -- 
> > Best regards,
> >  Richard Davey
> >  http://www.phpcommunity.org/wiki/296.html
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to