Computer Science Canada Page Redirection Warning ( header location ) |
Author: | alpesh [ Wed Aug 01, 2018 11:27 pm ] |
Post subject: | Page Redirection Warning ( header location ) |
When You use header("location:url"); in PHP ... On server it Display warning and page does not redirect. Here is the solutiion <?php ob_start(); .... logic ......... ob_end_flush(); ?> OR Try replacing header("Location:order_sell.php"); with echo '<META HTTP-EQUIV="Refresh" Content="0; URL=filename.php">'; exit; |