php - How to send a variable from index to controller in opencart -


I want to set a variable in index.php and in any controller that variable Want to use Open Cart?

I think what you want is a session variable.

$ _ session ['your variable'] = "variable value";

In this way you can set it.

You can access it.

$ var_value = $ _SESSION ['your variable']


Comments