how to submit data in database in php because multiple form tag is used
aks university () - 7 years ago - Reply 0
Hi. Thanks. I have implemented this successfully. I had to make a change in the <select> for it to work. in the HTML, I had to remove the "name=xxx" from each of the the <option> list and then in the JS I had to change the name='Male"+i+ "'name='Female"+i+"' and name='3rdgen"+i+"' to name='gender"+i+". Then it sends the correct information to my php file'.
The only other thing I would like to do but can't work out is for the page to jump to a missing required field. Currently it just highlights it, but in other forms I have, the page jumps to the first input where the validation is missing.
One more tip - if you want a text field NOT to be validated (such as, in my case, Middle Name), change the type="text" to type="tel" as it seems to want to validate all text inputs
Joel Malach () - 7 years ago - Reply 0
if we need to validate form, if field is empty show msg please enter the text and not jump to another step.
Dilip paswan () - 7 years ago - Reply 0
Hello. What if i want not to remove buttons after click on Activate next step?
I tried remove $(this).remove(); , but after that the form crashed.
Do you have any solution? Thank you
Lukáš Staroň () - 7 years ago - Reply 0
Ok, i know the answer. For each button should be defined type="button", then you can remove all $(this).remove();.
It's based on default behavior of HTML5 buttons :)
Lukáš Staroň () - 7 years ago - Reply 0