[PHP-DB] Re: why won't session_start() work?

2002-03-08 Thread Killer Angel Clark
You may try to put session_start(); at the most begining. But should you also add a session path first? "Ryan Snow" <[EMAIL PROTECTED]> ¼¶¼g©ó¶l¥ó [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > when I do: > session_start(); > session_register('signor'); > session_r

[PHP-DB] Re: why won't session_start() work?

2002-02-28 Thread jas
Not to mention that you are registering two different variables... try combining the two by putting a coma between them. i.e. session_register('signor','username'); HTH Jas "Jas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED].; > Ryan, > Do you have anything else between your .

[PHP-DB] Re: why won't session_start() work?

2002-02-28 Thread jas
Ryan, Do you have anything else between your . Need more code to determine why. Jas "Ryan Snow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED].; > > when I do: > session_start(); > session_register('signor'); > session_register('username'); > > > I g