Struggling with the headers already sent problem. Here is the start of my index.php
<?php
ob_start();
session_start();
?>
I have tried every fix found in the forums with no luck. When I run the code from phpDesigner, this is the error:
PHP Warning: session_start(): Cannot send session cookie - headers already sent in C:\Development\PHP_Projects\BrothersNetLogger\index.php on line 3 PHP Stack trace: PHP 1. {main}()
When I run the code from the hosting company’s server, no error, all works fine.
Any suggestions are welcome. Need to fix the php.ini for Designer?