|
Re: Warning: Cannot modify header information - headers already sent by (output started at
Also of note, the PHP code must be the first thing in the file. The following will not work:
<!DOCTYPE blah blah blah>
<?php
header('foo');
?>
__________________
<insert disclaimer here>
<insert shameless plug for Visual Studio here>
|