Warning: session_start(): Cannot send session cookie – headers already sent by (output started at [duplicate]

Move the session_start(); to top of the page always.

<?php
@ob_start();
session_start();
?>

Leave a Comment