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
https://forums.phpfreaks.com/topic/281212-fileini/#findComment-1445209
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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