HTML PAGE IS HERE: IN CODEIGNITER:: <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”utf-8″> <title>Show More Testing</title> <style type=”text/css”> ::selection{ background-color: #E13300; color: white; } ::moz-selection{ …
Read MoreAjax
How to post with out refreshing the page
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 More