Hi,
Sorry for replying late,
First you try to display the values into action page and see whether the values are being passed or not..
for example
if the form field is
<input type="text" name="fname" value="<?php echo $fname; ?>">
and on next page try to echo variable $fname
echo $_POST['fname'];
its better to use $_POST because if register_globals is off then using direct variable name i.e. echo $fname; wont work...
So once it displays then it shold also print the same values in mail also...
can you provide the part of the code here?
Deep
|