My PHP file has two forms. Both form tags have an onsubmit attribute that links to the same javascript file. The first form's onsubmit is working. The function being called by the second form has been simplified to this:
Code:
function UserDataCheck()
{
return false;
}
The form tag is
Code:
echo "<form name='user_form' method='post' onsubmit='return
Leave a comment: