|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-12-15 13:11 UTC] derick@php.net
[2001-12-15 13:24 UTC] loll at thedaisypatch dot net
[2001-12-15 13:37 UTC] loll at thedaisypatch dot net
[2001-12-15 13:41 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 20:00:01 2025 UTC |
starting session with session_register.. The session variable will display.. but after calling the session_unregister command... the session variable still remains... <? session_start(); if($page == ""){ $test = "hello"; session_register("test"); } elseif($page=="u"){ session_unregister("test"); } else { echo "$test"; } ?>