Hi !
This is my HTML code - file name "form.html"
I've wrote the "script.php" which can print to browser like this
abc|value_abc
def|value_def
xyz|value_xyz
This is what I have done - "script.php"
And now - I need your help to write an advance "script.php"
I want that if I go to modify "form.html" -
change the field name "abc" to "new_abc" and new value for that field (see below)
<input type=hidden name="new_abc" value="new_value_abc">
<input type=hidden name="new_def" value="new_value_def">
<input type=hidden name="new_xyz" value="new_value_xyz">
Then when I submit the form - it will print out correctly like this
Hope you understand what I mean -
The "script.php" will print out correctly field_name|field_value even if I add or remove the form field.
Thanks