Jump to content

file.ini


moisesbr

Recommended Posts

OK. Is .ini files the right choice the store variables to use them in a whole site and pass them from a page to another. Or global variables is a different concept ?

 

Moises

 

 

- Global  variables are the normal variables in your PHP file not hidden inside a function or class or array.

 

- Session variables are for saved to the session and passed between pages for the same user only.

 

- ​If you want variables that are on every page for every user, put the variables in a PHP file and include() them, or include_once(), if you want an error to happen if that file fails to load use require() or require_once()

 

- Anything more complicated then that, look at using a database

Link to comment
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.