|
<?php
session_start();
include 'config.php';
?>
Try moving this to the very top of the page... BEFORE the HTML headers...
In order to start a session, it has to be initiated before any HTML is sent to the user for which the session is being created...
Mike.
|