定义全局变量,包含3个php页面

时间:2017-04-14 17:03:27

标签: php

奇怪的是,php中有3个页面,我在XAMPP服务器中上传的 define()定义了全局变量。

主页面包含此必需页面

// defined password and username costants;     
require_once('config.php'); 

// defined other new constants and it use also password and username constant.
require_once('http_post.php');

Config.php http_post.php 对彼此没有引用(必填)。

我问自己http_post如何在没有引用的情况下获取config.php中定义的密码和用户名,在一个XAMPP安装中它可以工作,htt_post.php可以从config检索用户名和密码变量(localhost)但是当我上传到一个服务器总是使用XAMPP(对我来说不再是localhost)http_post.php在config.php中看不到用户名和密码。怎么可能?改变了什么? localhost的一些特殊行为?主页引用的两个PHP页面是否以某种方式连接?

很多

1 个答案:

答案 0 :(得分:-1)

使用localStorage或cookies。在PHP中你可以使用这样的东西:

echo "<script>localStorage.username = " . $username . "</script>";