我正在尝试向我的页面“functions.php”添加一个名为“addNotification”的函数
我的功能:
function addNoti($text,$userid)
{
mysql_query("INSERT INTO notifications (time,text,userid) VALUES('".time()."','$text','$userid')");
if(mysql_affected_rows() != 1)
return 2;
else
return 100;
}
几百行下面^(同一页),我有我的注册功能“注册”:
function doRegister()
{
global $datesetting;
mysql_query("query to register goes here");
addNoti("You just joined us!","$userid");
}
虽然,每当我处理我的注册表单时,我都会收到以下错误:
Fatal error: Call to undefined function addNoti() in /home/domain/public_html/path/to/functions.php on line 278
(第 278 行是调用 addNoti 的地方)
每当我尝试将 addNoti 移动到另一个页面并在 functions.php 中加载该页面时,我都不会出错。
请帮忙。
先感谢您。