Posted by Syl on 06/30/06 01:39
CjB wrote:
> Hello, I am trying to do the following in one of my pages.
> session_id($_GET['SESSIONID']);
> session_start();
>
> I am running php5, however as soon as I call session_start the script
> hangs and nothing happens. Is anyone else experiencing this problem, or
> am I doing something incorrectly?
>
> Thanks!
session_start(); must always be listed at the top of every page.
like this :
<?php
session_start();
Navigation:
[Reply to this message]
|