Click to See Complete Forum and Search --> : Is this possible?


DanUK
11-26-2003, 04:07 PM
Hiyas.
I have a form, which has the stuff in the actual HTML like:


<form method="post" action="cgi-bin/FormMail.pl" target="_self">
<input type="hidden" name="env_report" value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT">
<input type="hidden" name="recipient" value="support@192.168.0.16">
<input type="hidden" name="required" value="contactNAME,contactEMAIL,contactCOMMENTS">
<input type="hidden" name="redirect" value="http://192.168.0.16/thankyou.php">


Is it possible to hide all that in the PHP itself?

pyro
11-26-2003, 04:39 PM
You could register it to a cookie or session variable(s).

diamonds
11-27-2003, 10:46 AM
It appears that you is submitting to a perl script, and I don't know if perl and php can comunicate well with each-other through sessions or cookies. I think the cookie part works, though.