I am trying to peform a page redirect, the code I am using is:
<code>
<?php
ob_start();
if($SubmittedDepartDate==$SubmittedReturnDate)
{header("Location: action.php"
;}
ob_end_flush();
?>
</code>
However I recieve the error I have listed below, does anyone know why?
Warning: Cannot add header information - headers already sent by (output started at /sites/htdocs/test.es.cib.intranet.db.com/htdocs/organisation/policies/submitted.php:8) in /sites/htdocs/test.es.cib.intranet.db.com/htdocs/organisation/policies/submitted.php on line 13
<code>
<?php
ob_start();
if($SubmittedDepartDate==$SubmittedReturnDate)
{header("Location: action.php"
ob_end_flush();
?>
</code>
However I recieve the error I have listed below, does anyone know why?
Warning: Cannot add header information - headers already sent by (output started at /sites/htdocs/test.es.cib.intranet.db.com/htdocs/organisation/policies/submitted.php:8) in /sites/htdocs/test.es.cib.intranet.db.com/htdocs/organisation/policies/submitted.php on line 13