php - 无法获得要输出的查询结果。 (如果有输出)

时间:2013-01-06 03:25:44

标签: php

程序从用户获取变量$ ask,这是一个感兴趣的类别,如运动,电影等。然后检查数据库是否存在该类别,如果它不存在则将其添加到数据库。数据库内存,表 - 'interestcategories',目前只有3列IID,类别和注释。然而,添加到数据库的工作原理是,如果它在数据库中,那么打印出来的内容就不起作用....

问题主要在于以下几点:

   while ($row = mysqli_fetch_assoc($result)) {
    printf ("%s (%s)\n", $row["Category"], $row["Comment"]);
   }
   /* free result set */
   mysqli_free_result($result);

因为没有任何东西被放到屏幕上甚至没有错误信息。 应该只打印一行,因为该类别仅在表格中出现一次。 有任何想法吗?

  <?php
  error_reporting(E_ALL);
  $link = mysqli_connect("localhost", "root", "", "memory");
  /* check connection */
  if (mysqli_connect_errno()) {
  printf("Connect failed: %s\n", mysqli_connect_error());
  exit();
  }

function notAnInterest($ask, $link)
{
$query2 = "INSERT into interestcategories (Category, Comment)
        VALUES ('$ask', 'Added by user') ";

$result2 = mysqli_query($link, $query2);
echo "<pre>Debug: $query2</pre>\n";
if ( false===$result2 ) {
  printf("error: %s\n", mysqli_error($link)); 
  }
 echo 'added ' . $ask; 
 }

 if(isset($_POST['ask']) === true && empty($_POST['ask']) === false) {
 $ask = trim($_POST['ask']);
$query = "
SELECT  *
FROM    `interestcategories`
WHERE `interestcategories`.`Category` = '$ask' ";

if ($result = mysqli_query($link, $query)) {
if(($row = mysqli_fetch_assoc($result)) === null) {
notAnInterest($ask, $link);
}
 /* fetch associative array */
    printf('here1');
 while ($row = mysqli_fetch_assoc($result)) {
    printf('here2');
  //printf ("%s (%s)\n", $row["Category"], $row["Comment"]);
}

 /* free result set */
 mysqli_free_result($result);
}

}

 /* close connection */
  mysqli_close($link);

  ?>

1 个答案:

答案 0 :(得分:0)

变化:

if ($result = mysqli_query($link, $query)) 
{
    if (($row = mysqli_fetch_assoc($result)) === null) 
    {
        notAnInterest($ask, $link);
    }

    /* fetch associative array */
    while ($row = mysqli_fetch_assoc($result)) 
    {
        printf ("%s (%s)\n", $row['Category'], $row['Comment']);
    }

    /* free result set */
    mysqli_free_result($result);
}

要:

if ($result = mysqli_query($link, $query)) 
{
    if (0 == mysqli_num_rows($result)) 
    {
        notAnInterest($ask, $link);
    }
    else
    {
        /* fetch associative array */
        while ($row = mysqli_fetch_assoc($result)) 
        {
            printf ("%s (%s)\n", $row['Category'], $row['Comment']);
        }
    }

    /* free result set */
    mysqli_free_result($result);
}