I need to validate two forms containing multiple input fields but want just one error message if any of the fields are left blank, the page is required to submit the users details (registration form). Also if any of these fields are left blank i don't want to be able to go to the next page on clicking the submit button

You should try the following:

- Add an id for every input and form
- Write a global function that checks the value (for example check_email(inputid) or check_name(inputid) )
- Use the event onsubmit() in each form tag. In that event you should call a fuction: onsubmit="return checkform(this.id)" - The function checkform(formid) should return a true if all fields have been entered correctly or false if not

~G

commented: Not sure why it was down voted, seems like a good answer to me. +5
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.