This is another session problem, after i destroy a session i created, i can still get the value which i have assign to a session variable in that session which i have destroy. I even tried session_unset() but it doesn't work. what is the problem?
it is session_destroy() not destroy_session().
yeah i know ... just too blur and in hurry some more .. i'm sure i use session_destroy in my source code .. but things cannot work
Try using unset() to the variables you have register and also try session_unregister to the variables you've registered. Another thing you can try is (this is the most effective way) to use session_unset();.
Regards,
Takuma