How should I make variable global for all the pages in PHP

后端 未结 3 1439
遥遥无期
遥遥无期 2021-01-29 11:24

Question

I want to make $associate_name and $app_key global variable so I can access them on any page I want. Below is the cod

3条回答
  •  遥遥无期
    2021-01-29 12:09

    • Have all your variables/constants in a separate file may be constants.php Include that constants.php wherever you want to access that variable.
    • Use $_SESSION

提交回复
热议问题