首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

这个不知道错哪了7,8行报错

2012-04-04 
这个不知道哪里错了7,8行报错?include(includes/config.php)//第 7,8 行报错lei(0)$ii0function le

这个不知道哪里错了7,8行报错
<?
include("includes/config.php");
//第 7,8 行报错
lei(0);
$ii=0;
function lei($belongs_id){
$sql=mysql_query("select * from pro_type where belongs_id='".$belongs_id."'",$conn);
while($rs_info=mysql_fetch_array($sql)){
//大类
if($belongs_id==0){
echo "大类";
}else{
echo "小类";
}
$ii=$ii+1;
lei($rs_info["id"]);
$ii=$ii-1;
}
}
?>

[解决办法]
发现是变量作用域的问题。函数里的变量是局部变量,$conn要想使用全局变量,就得声明为global
[解决办法]

PHP code
<?include("includes/config.php");//第 7,8 行报错lei(0);$ii=0;function lei($belongs_id){// 解决方法1, 不填$conn$sql=mysql_query("select * from pro_type where belongs_id='".$belongs_id."'");// 解决方法2, 以参数传递,或声明为全局// global $conn;// $sql=mysql_query("select * from pro_type where belongs_id='".$belongs_id."'", $conn);while($rs_info=mysql_fetch_array($sql)){//大类if($belongs_id==0){echo "大类";}else{echo "小类";}$ii=$ii+1;lei($rs_info["id"]);$ii=$ii-1;}}?>
[解决办法]
难道要
global $conn ;
$sql=mysql_query("select * from pro_type where belongs_id='".$belongs_id."'",$conn);

热点排行