is used exactly – Turkish Translation – Keybot Dictionary
TTN Translation Network
TTN
TTN
Login
Deutsch
Français
Source Languages
Target Languages
Select
Select
Keybot
32
Results
32
Domains
controverses.org
Show text
Show cached source
Open source URL
If you have an old code with a lot of call to the function session_register(), and you would like to make it compatible with PHP5 or PHP6, instead of rewriting all your code by replacing this function by $_SESSION['var']="val"; you could use the function set_session_vars(), that
is used exactly
the same way than session_register() (but there is no implicit call to session_start() ).
Compare text pages
Compare HTM pages
Open source URL
Open target URL
Define
ir2.php.net
as primary domain
if you remove session_register() calls and replace with $_SESSION assignments, make sure that it wasn't being used in place of session_start(). If it was, you'll need to add a call to session_start() too, before you assign to $_SESSION.