View Single Post
  #8 (permalink)  
Old 01-24-2005, 12:10 AM
Deep13's Avatar
Deep13 Deep13 is offline
WebProWorld Veteran
 
Join Date: Dec 2003
Location: India
Posts: 304
Deep13 RepRank 0
Default

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
Reply With Quote