Posts

Showing posts with the label Redirect after form submit in JavaScript and PHP

Redirect after form submit in JavaScript and PHP

Image
After a successful form submission, if you want to redirect to previous page use this code Redirect after form submit in JavaScript and PHP :   <script   type   =   "text/javascript" > <?php if($this->session->flashdata('msg')): ?> alert('Send data for Enquiry.'); window.history.go(-2);   <?php endif; ?> </script> For redirect to particular page use :   <script   type   =   "text/javascript" > function Redirect () { window . location = "index.html" ; } </script>