警告:mysql_result()[function.mysql-result]:无法跳转到第11行的profile.php中MySQL结果索引5的第0行

时间:2012-09-29 03:03:24

标签: php mysql

当我尝试访问profile.php?u=destiny

//$result = mysql_query('SELECT name FROM 
$imageresult = mysql_query("SELECT name FROM imagetable WHERE id = '$id'") or die(mysql_error());
$u = mysql_result($imageresult, 0 ,"name") or die(mysql_error());
//error_reporting(E_ALL);
if (isset($id) && (!isset($u))) {
}
  

警告:mysql_result()[function.mysql-result]:无法跳转到行   第11行的profile.php中的MySQL结果索引5为0

1 个答案:

答案 0 :(得分:4)

此警告表示$imageresult var中没有行。看看,这应该工作:

$imageresult = mysql_query("SELECT name FROM imagetable WHERE id = '$id'") or die(mysql_error());
if (mysql_num_rows($imageresult) > 0) {
  $u = mysql_result($imageresult, 0 ,"name") or die(mysql_error());
  if (isset($id) && (!isset($u))) {
  }
}