Cannot modify header information - headers already sent by FIX
1 2 <?php 3 ob_start(); 4 5 header("Location: somepage.php"); //Redirect 6 7 ob_end_flush(); 8 exit; 9 ?>
DZone Snippets > dezmarie > header
12750 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Desirae Beberniss http://www.astralmatrix.net
1 2 <?php 3 ob_start(); 4 5 header("Location: somepage.php"); //Redirect 6 7 ob_end_flush(); 8 exit; 9 ?>