Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at index.php:3) index.php on line 3
I have tried this a number of ways but I am unable to fix this
<?php
ob_start();
session_start();
And this
<?php
session_start();
ob_start();
And like this
<? ob_start(); ?>
<?php
session_start();
Any help would be very much apprciated, I have the same type of code on a different website working perfectly...