phppaper Posted April 3, 2008 Share Posted April 3, 2008 Can someone tell me what these mean?? 1. session_register("id"); AND 2. session_is_registered(id); is it a variable or session name?? Link to comment https://forums.phpfreaks.com/topic/99303-question-on-session/ Share on other sites More sharing options...
PFMaBiSmAd Posted April 3, 2008 Share Posted April 3, 2008 Like most of the core php functions, those two are explained in the php manual - http://www.php.net/docs.php When you read up on those, take note that those two functions only work when register globals are on, they have both been depreciated since php 4.2 in the year 2002, and have been completely removed in php6. Link to comment https://forums.phpfreaks.com/topic/99303-question-on-session/#findComment-508090 Share on other sites More sharing options...
unsider Posted April 3, 2008 Share Posted April 3, 2008 Like most of the core php functions, those two are explained in the php manual - http://www.php.net/docs.php When you read up on those, take note that those two functions only work when register globals are on, they have both been depreciated since php 4.2 in the year 2002, and have been completely removed in php6. TS, incase you're interested, here are some changes for php6. Figured you might want to take a look. http://davidwalsh.name/upcoming-php6-additions-changes Link to comment https://forums.phpfreaks.com/topic/99303-question-on-session/#findComment-508101 Share on other sites More sharing options...
PFMaBiSmAd Posted April 3, 2008 Share Posted April 3, 2008 Here are the official meeting notes that all the other comments/blogs... are based on - http://derickrethans.nl/files/meeting-notes.html Here is the php.net wiki site concerning php6 - http://wiki.php.net/todo/php60 Link to comment https://forums.phpfreaks.com/topic/99303-question-on-session/#findComment-508107 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.