Form Validation Using Javascript

Hi everyone, this simple tutorial will teach you on how to create a simple submit validation with yes or no option. This is a simple tutorial that consist a few line of code. To start this tutorial lets follow the steps below.

Creating our form

Copy the code below and paste to your html editor and save it as "index.php".
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5. <form name="checkoutForm" method="post" action="landing.php" onsubmit="return validateForm()">
  6. <input type="text" name="name" />
  7. <input type="submit" class="button" value="Next">
  8. </form>
  9. </body>
  10. </html>

Writing Our javascript code

The function of this code is it validate the action and ask you to continue or not. To write our javascript, copy the code below and paste in below the head tag of your index.php.
  1. <script type="text/javascript">
  2. function validateForm()
  3. {
  4. var con = confirm("Are You Sure? Do you want to continue?");
  5. if (con ==false)
  6. {
  7. return false;
  8. }
  9. }
  10. </script>

Creating Our Landing page

Copy the code below and save it as "landing.php".
  1. <?php
  2. echo 'The text you input is: '.$_POST['name'];
  3. ?>
Congrats You've successfully created your simple submit validation The code files of this tutorial are attach in the zip file, you can download it if you want.

Add new comment