Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mahbub-shohag/eb827d1abfebb5e484336389d71d913d to your computer and use it in GitHub Desktop.
Save mahbub-shohag/eb827d1abfebb5e484336389d71d913d to your computer and use it in GitHub Desktop.
jquery part
$('#registration_form').on('submit',function(e){
e.preventDefault();
var datastring = $(this).serialize();
$.ajax({
method : "GET",
url : "<?php echo base_url(); ?>Main/submit_registration_form",
data: {datastring:datastring}
})
.done(function(msg){
alert(msg);
});
});
php part
public function submit_registration_form(){
parse_str($_GET['datastring'], $searcharray);
echo $searcharray['date_of_birth'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment