Hi;
hope someone can help me.
I have a conact form with the following post command:
<form action="thankyou.php" method="post" name="contactform" id="contactform">
<input type="hidden" name="recipient" value="contactform" />
<input type="hidden" name="subject" value="Response from Web Form" />
My question is: How can I have the contact form typed input from the user display on my PHP page (i.e. the contact form uses <input type="text" name="Username" size="45" /></td>). How can the PHP display the results?
Thank you very much in advance..I appreciate any help.
Below is the thankyou.php page.
<?php
session_cache_limiter('nocache');
session_start();
include "subs.php";
Print_header ("Get Password","",0);
?>
<br><center><h1>Thank You!</h1></center><br>
<TABLE border="0" bgcolor="#FFFFFF" cellpadding="0" cellspacing="0">
<TR>
<TD width=600><BR>
<BR>
</TD></TR></TABLE>
<?
Print_footer ();
?>