得到错误...作为mysql_fetch_array

时间:2014-03-25 15:09:08

标签: php mysql

我刚刚将一个脚本从服务器移动到另一个,我现在收到此错误。

两台服务器都具有相同的PHP版本

错误:

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /home/www/94785434238541841303849314ba4fa5/web/webapp/screen_3.php on line 85

这是screen_3.php的相关错误代码:

<?php
                $sel="select * from user where sess_id='".$sess_id."' order by id desc"; 
                $res=mysql_query($sel);
                $val=mysql_fetch_array($res);
                //$seli="select * from "
                //echo $val['w1'];
                //echo $val['w2'];
                //echo $val['w3'];
        //$val['w1']= 'arrow';
                            ?>

感谢您的回复。

1 个答案:

答案 0 :(得分:1)

很可能你的数据库连接失败了...你确定mysql_connect正在使用正确的db用户并通过吗?