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.
<?php
ob_start();

header("Location: somepage.php"); //Redirect

ob_end_flush();
exit;
?>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS