Hi all!
Here is my question,
I have figured out that I can pass variables from on form to another form and either have those variable be printed in text a kin to the pages layout, or have those variables appear in text fields on a new form.
Well I like things that are pretty and the
<?php print $variable here ;?>
tag is great, but when I want to email that form off, (using formmail or a clone) those variables are not shown in the email that is received.
This tag is not nearly as pretty, but it will pass those variables in question to the email script.
<input type="text" name="variable" value="<?php print $variable;?>">
So the question is even if i have to include additional tags, how can I use the first tag above (for looks) and be able to mail those variables (for functionality) to me?
If you would like to see an example of what I mean goto:
http://www.glowhost.com/signup1.htm and fill out a few fields then submit
On the next page that appears you will see on the first line, the code that is ugly but works and the second line, the sexy code that doesn't mail to me.
Thanks in advance!
Matt