Never been to DZone Snippets before?

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

About this user

Desirae Beberniss http://www.astralmatrix.net

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Cannot modify header information - headers already sent by FIX

Buffers output and eliminates problem with spaces/line breaks at the beginning/end of files. Make sure to place ob_start(); before header(); is called.
   1  
   2  <?php
   3  ob_start();
   4  
   5  header("Location: somepage.php"); //Redirect
   6  
   7  ob_end_flush();
   8  exit;
   9  ?>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS