Ajax POST format: request is post to register.php page. All the database insert , update query is written there. connect with jquery library online using– …
Read MoreHow to post using ajax
Here is the ajax format to post a request without refresh the page. var datastring = {‘name’:name, ’email’:email, ‘phone’:phone }; $.ajax({ url:”register.php”, type:”post”, data: datastring, …
Read MoreSubmit Register Form without refreshing the page
<!—- index.php page—-> <html> <body> <!——making jquery library’s link —> <script src=”//code.jquery.com/jquery-1.10.2.js”></script> <script> function validate() { //——–value of fields ——— var name = document.getElementById(“name”).value; var …
Read MoreRegistration Form validation With Javascripts
<html> <body> <script> function validate() { var name = document.getElementById(“name”).value; var email = document.getElementById(“email”).value; var phone = document.getElementById(“phone”).value; var error_name_id = document.getElementById(“error_name”); var error_email_id = …
Read MoreHow to search data from table in php
———both HTML and php code in s1.php file—————- <form method=”post” action=”s1.php?go” id=”searchform”> <input type=”text” name=”name”> <input type=”submit” name=”submit” value=”Search”> </form> <?php if (isset($_POST[‘submit’])) { …
Read Moreebs payment gateway integration
First we have to post this form to ebsĀ # Make the Hash $hash = “ebskey”.”|”.$_POST[‘account_id’].”|”.$_POST[‘amount’].”|”.$_POST[‘reference_no’].”|”.$_POST[‘return_url’].”|”.$_POST[‘mode’]; $secure_hash = md5($hash); <?php $hash = “ebskey”.”|”.$_POST[‘account_id’].”|”.$_POST[‘amount’].”|”.$_POST[‘reference_no’].”|”.$_POST[‘return_url’].”|”.$_POST[‘mode’]; $secure_hash …
Read More