Hi all-
I have a variable that I place a form in:
<?php
$the_form = "
html form stuff...
;"
?>
Within that form, I would like to put PHP variables carried over from another script, but can't see how to do this.
For example,
<?php
$the_form = "
<?php
$var1 = \"$POST[this]\";
$var2 = \"$POST[that]\";
?>
html form stuff...
;"
Those variables are sensitive passwords, and the only way my script will work is if they are included when pressing submit on this form. I can inlcude them as input type="hidden", but then you can see the passwords.
So basically, how can I put these variables in the form so that they can't be seen but still processed?
Thanks for any help!