|
Posted by usenet on 04/03/07 17:21
On 3 Apr 2007 08:24:22 -0700, rynato@gmail.com wrote:
>Simple question, probably a simple answer:
>
>I have a php-based email form. There are three hidden variables passed
>from the initial page to the php script which handles sending the
>message:
>
><input type="hidden" name="ip" value="<?php echo $ipi ?>" />
><input type="hidden" name="httpref" value="<?php echo $httprefi ?>" />
><input type="hidden" name="httpagent" value="<?php echo $httpagenti ?
>>" />
>
>
>Everything works fine, I do get sent the message when I fill out and
>submit the form, but the three values above are passed as literally,
>the values seen above within the quotes. That is, I get:
>
>Additional Info : IP = <?php echo $ipi ?>
>Browser Info: <?php echo $httpagenti ?>
>Referral : <?php echo $httprefi ?>
>
>in the body of the email. Why? And what can I do to fix this?
This shouldn't cause the problem, but the semicolons are missing at the end of
the php statements.
To examine further, we'd need to see the code that reads your $_POST variables.
Navigation:
[Reply to this message]
|