Posted by Rik on 10/19/06 04:27
Garry Jones wrote:
> Notice: Undefined variable: _SESSION in
> /customers/scfmotion.se/scfmotion.se/httpd.www/cent15dt.php on line 5
This is an error you'll get when you fail to give a correct
session_start(). This is mandatory on EVERY page. Be sure to:
- include session_start() in your script as one of the first command in
every file offcourse.
- enable error_reporting before the session_start();
- beware of type-errors :-)
--
Rik Wasmus
[Back to original message]
|