Submit 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 email = document.getElementById(“email”).value; var phone …

Submit Register Form without refreshing the page Read More

Registration 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 = document.getElementById(“error_email”); var error_phone_id = document.getElementById(“error_phone”); …

Registration Form validation With Javascripts Read More

ebs 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 = md5($hash); ?> . <form …

ebs payment gateway integration Read More