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

后端 未结 3 1474
遥遥无期
遥遥无期 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:14

    Sessions are your choice in case the value is modified. Otherwise (the value is constant from your configuration and not from user's modification, go for Constants

提交回复
热议问题