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