Hello all!
I'm using PHP and Postgresql although I think the same concepts will apply to Mysql. I have two forms, one with a single text field where a name is inputed, and a submit button. When that button is pressed, you are taken to the next form to fill out additional information for final submission. Here's the problem, one of the text fields in the 2nd page needs to be populated by the same name in the first page. I tried to use the following command in the "value" argument for the text field:
VALUE = <?php echo"$_POST[name]";?>
It only partially works, it seems to only take in only one word. Usually more then one word will be inputted into that text field in the first form. Does anyone know how I can capture all the text in the field?
Thanks,
Jisoo22
I'm using PHP and Postgresql although I think the same concepts will apply to Mysql. I have two forms, one with a single text field where a name is inputed, and a submit button. When that button is pressed, you are taken to the next form to fill out additional information for final submission. Here's the problem, one of the text fields in the 2nd page needs to be populated by the same name in the first page. I tried to use the following command in the "value" argument for the text field:
VALUE = <?php echo"$_POST[name]";?>
It only partially works, it seems to only take in only one word. Usually more then one word will be inputted into that text field in the first form. Does anyone know how I can capture all the text in the field?
Thanks,
Jisoo22