在mysql的一列中选择多个具有相同值的行?

时间:2013-05-07 16:06:34

标签: php mysql

我正在尝试使用PHP和MySQL制作评论系统。我创建了一个名为“comment”的表来存储详细信息

id  | date      |product_id | user_name | email_id          | comment
    |           |           |           |                   |
1   |2013-05-07 |  10001    |  jabong   | jabong@jabong.com | this is good product
2   |2013-05-07 |  10001    |  john     | john@gmail.com    | I bought this product 

等等


现在我想选择并打印所有那些product_id = 10001的行。 我正在使用以下代码打印详细信息

  $comment="";
  $id=$_GET['id'];//this is the product_id which is taken from URL
  $query=mysql_query("SELECT * FROM comment WHERE product_id='$id'");
  while($data = mysql_fetch_array($query))
    {
        $name = $data["user_name"];
        $email = $data["email_id"];
        $comment = $data["comment"];
        $date=strftime("%d %b, %Y", strtotime($data["date"]));

        $comment.='<table>
                      <tr>
                        <td>Date: '.$date.'</td>
                      </tr>
                      <tr>
                        <td>Name: '.$name.'</td>
                      </tr>
                      <tr>
                        <td>Email_id: '.$email.'</td>
                      </tr>
                      <tr>
                        <td>Product Review: '.$comment.'</td>
                      </tr>
                    </table><hr />'; 

然后我在身体部分回应他们。但我只得到一个结果。 所以请帮助我获得正确的代码。

3 个答案:

答案 0 :(得分:1)

我的代码存在一个小问题。我使用相同的变量两次,我也没有使用连接符号。但现在它已经解决了---

      $review="";
      if (isset($_GET['id']))
  {
      $id=mysql_real_escape_string(trim($_GET['id']));
      $query=mysql_query("SELECT * FROM comment WHERE product_id='$id'");
      $review.='<table width="70%" cellpadding="6px" cellspacing="0" >';
      while($data=mysql_fetch_array($query))
        {
            $name = $data["user_name"];
            $email = $data["email_id"];
            $comment = $data["comment"];
            $date=strftime("%d %b, %Y", strtotime($data["date"]));
            $review.='<tr>
                        <td>
                          <table width="100%" border="0" style="border:1px solid; border-color:#05fdee; background-color:#e4f2f1;">
                              <tr>
                                <td rowspan="2" width="100px"> <img src="profile.png" /> </td>
                                <td align="left"><b> '.$name.' </b> says -</td>
                                <td align="right"><b> '.$date.' </b></td>
                              </tr>
                              <tr>
                                <td colspan="2">'.$comment.'</td>
                              </tr>
                          </table>
                        </td>
                      </tr>';

        }// while loop ends here
        $review.='</table>'; 
  } 

答案 1 :(得分:0)

首先,最重要的是清理数据。

$id=mysql_real_escape_string(trim($_GET['id']));
$query=mysql_query("SELECT * FROM comment WHERE product_id='$id'");

while($ data = mysql_fetch_array($ query))

第二个问题是你在每个循环中覆盖变量$ comment,所以你只得到1条记录,即使你循环两次。

remove this: $comment = $data["comment"];
change this: <td>Product Review: '.$comment.'</td>
to this: <td>Product Review: '.$data["comment"].'</td>

答案 2 :(得分:0)

你有这一行:

$comment = $data["comment"];

这会覆盖这一个:

$comment.='<table>
                      <tr>
                        <td>Date: '.$date.'</td>
                      </tr>
                      <tr>
                        <td>Name: '.$name.'</td>
                      </tr>
                      <tr>
                        <td>Email_id: '.$email.'</td>
                      </tr>
                      <tr>
                        <td>Product Review: '.$comment.'</td>
                      </tr>
                    </table><hr />'; 

所以,当你正在制作echo $comment时,它会显示最后一个。

更改变量并完成

类似的东西:

 $comment_sql = $data["comment"];
....
    $comment.='<table>
                          <tr>
                            <td>Date: '.$date.'</td>
                          </tr>
                          <tr>
                            <td>Name: '.$name.'</td>
                          </tr>
                          <tr>
                            <td>Email_id: '.$email.'</td>
                          </tr>
                          <tr>
                            <td>Product Review: '.$comment_sql.'</td>
                          </tr>
                        </table><hr />'; 
...