Jump to content

session error?


techker

Recommended Posts

what does this meen?

 

Notice: Undefined index: 2 in /home/open2sha/public_html/new/includes/core/core.session.php on line 0

 

Notice: Undefined index: 2 in /home/open2sha/public_html/new/includes/core/core.session.php on line 0

 

Notice: Undefined offset: 2 in /home/open2sha/public_html/new/includes/core/core.session.php on line 0

 

Warning: Invalid argument supplied for foreach() in /home/open2sha/public_html/new/includes/core/core.session.php on line 0

MySQL ERROR

Link to comment
https://forums.phpfreaks.com/topic/183668-session-error/
Share on other sites

It means you referred to an element of an array but the element does not exist.  Such as:

$test[0] = 'Line 0';
$test[1] = 'Line 1';

// The following line produces a notice, because we did not define element 2
print $test[2];

 

"on line 0" -- I'm not sure why it says line zero.  Are you using eval or annonymous functions? 

 

Without seeing some code, we can't really help identify the problem.

Link to comment
https://forums.phpfreaks.com/topic/183668-session-error/#findComment-969417
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.