Hi created php page with input form and validation. The problem is that when i click on submit the validation works but the form is not submitted... Anyone can help me to understand where is the problem?
[https://jsfiddle.net/892wm47t/][1]
e.preventDefault(); stops the submission from completing. You're calling it on every attempt to submit the form.
You need to call it conditionally; only when the validation reports a problem.
submitted.phpthen why not use the<form method="post" action="submitted.php"attribute to do it