在php中我有一个页面index1.php,它以这样的方式开始:
require_once ('mysql_connect.php');
require_once ('includes/login_functions.inc.php');
在我的mysql_connect.php中,最后两行是:
global $dbc;
$dbc = connect_to_db(); ?>
现在,在login_functions.inc.php中我在函数中使用$ dbc,但是我收到以下错误:
Undefined variable: dbc in /var/www/[a few sub directories]/includes/login_functions.inc.php
为什么login_functions.inc.php看不到$ dbc? 我错过了什么?