How to access text data from parent form to child form Using $_SERVER['PHP_SELF']
Linux, Apache, MySQL, PHP
2
Posts
2
Posters
5
Views
1
Watching
-
With ?php echo $editFormAction/ $_SERVER['PHP_SELF'] as form action, how can I access the data entered in a form textbox but not submitted into db from another pop up window
-
With ?php echo $editFormAction/ $_SERVER['PHP_SELF'] as form action, how can I access the data entered in a form textbox but not submitted into db from another pop up window
Let us assume that we have the following form.
";
/* Lets say field2 value is "Doe" */?>
and you wish to use the values from signUpForm1 in signUpForm2. much like below
While I admit there may be some syntax errors with double and/single quotes, it should basically demonstrate the basic idea. Just a note, if you use method="GET" then use
$_GET['field1']
or
$_GET['field2']