Jump to content

Recommended Posts

Also, make sure that in every instance where you are using unset that you are also using the appropriate/desired array index. For example, if I accidentally used unset($_SESSION) ... I would wipe out all sessions for that user, regardless of the array indexes.

Link to comment
https://forums.phpfreaks.com/topic/165810-unset-problem/#findComment-874705
Share on other sites

I'm not sure I understand the question but I'll answer from every angle I can think of.

 

phpinfo(); is a helpful (and dangerous) read-only core method within the PHP language.  The displayed results will give very detailed info about the configured php runtime environment on your server and all the things available.

 

register_globals() is a function that you can call in your scripts to tell php to make a variable available to all parts of a script regardless of scoping.  It is mostly discouraged from use not because it is a faulty function but because of a general lack in understanding of the function and how to use it responsibly (as it can be a very dangerous function when used in a vulnerable script or incorrectly).

Link to comment
https://forums.phpfreaks.com/topic/165810-unset-problem/#findComment-874721
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.