Posted by Schraalhans Keukenmeester on 04/03/07 23:33
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?
>
> thx in adv
>
Am I the only one who thinks the problem may be the double quotes around
the php bits making the script parse it as a literal string? Or am I
just being silly. I can live with that now and then....
Sh.
[Back to original message]
|