javascript post to php
<form method="post" name="form" enctype="multipart/form-data"> <input type="text" name="name" id="name" placeholder="Name" required/> <input type="email" name="email" id="email" placeholder="Email" required/> <input type="password" name="pass" id="pass" placeholder="Password" required/> <input type="submit" name="submit" value="Send" onclick="myFunction()"/> </form> <script> function myFunction() { var name = document.getElementById("name").value; var email = document.getElementById("email").value; var password = document.getElementById("password").value; $.ajax({ type : "POST", //type of method url : "profile.php", //your page data : { name : name, email : email, password : password },// passing the values success: function(res){ //do what you want here... } }); } </script>