echo Value in form field
Posted: Sun Jan 29, 2006 10:46 am
Hi,
I need a little help. I have a form field that I want to echo the value.
Right now I have this code and it's not working.
I added an echo statement just outside the form field for $_POST['fn'] and the contents are displayed no problem.
EDIT:
I have also tried this varient as well and doesn't seem to work
Thank you
I need a little help. I have a form field that I want to echo the value.
Right now I have this code and it's not working.
Code: Select all
<?php echo "value=\"".$_POST['fn']."\""; ?>EDIT:
I have also tried this varient as well and doesn't seem to work
Code: Select all
<?php echo "value=".$_POST['fn']; ?>