2015-11-10 369 views
0

伙计们im试图加入评论表来张贴在以下查询表中。mysql查询返回空结果

$sql3=" 
select u.update_body 
    , u.author 
    , u.time 
    , u.title 
    , c.comment_body 
    , c.os_id 
    , c.author 
    , c.time 
    from updates as u 
    join comment_update as c 
    on c.os_id = :statusid 
    and u.account_name = :session 
    and u.type = ('a'&'c') 
    or u.account_name = :friend 
    and u.type = ('a'&'c') 
order 
    by u.time asc 
    , c.time desc"; 

     $stmth=$conn->prepare($sql3); 
     $stmth->bindValue(":session",$_SESSION['uname']); 
     $stmth->bindValue(":friend",$friend); 
     $stmth->bindValue(":statusid",$updateid); 
     $stmth->execute(); 

它返回空结果不知道我要去哪里错了???。任何帮助,将不胜感激。 这里是我的DB模式: DB schema

按ARSH的请求IM张贴整个代码在这里:

<?php 
include "includes/dbconfig.inc.php"; 
    $status_replies=""; 
     $status_list=""; 
     $statusui_edit=""; 
     $isowner=""; 
     $is_friend=""; 
     $friends = array(); 
$stmt= $conn->prepare("select friend_one, friend_two from friends where " 
     . "(friend_one=:session OR friend_two=:session) and accepted='1'"); 
$stmt->bindparam(":session",$_SESSION['uname']); 
$stmt->execute(); 
$status2view=$project->statusView($_SESSION['uname']); 

foreach ($stmt->fetchAll(PDO::FETCH_ASSOC) as $i=> $r) { 
    $r["friend_one"] == $_SESSION['uname'] ? $friends[]= $r["friend_two"] : $friends[] = $r["friend_one"]; 
$friend=$friends[$i]; 
foreach ($status2view as $val) { 
    $updateid=$val['update_id']; 

//select all relevant comments using the following query and print it. 
     $sql1="select u.update_body,u.author,u.time,u.title," 
       . "c.comment_body, c.os_id,c.author,c.time " 
       . "from updates as u join comment_update as c " 
       . "on c.os_id=:statusid and u.account_name = :session and u.type = ('a'&'c') or u.account_name=:friend and u.type = ('a'&'c') order by u.time asc,c.time desc"; 
     $sql2=" select u.update_body,u.author,u.time,u.title," 
       . "c.comment_body, c.os_id,c.author,c.time " 
       . "from updates as u join comment_update as c " 
       . "on c.os_id=u.update_id where u.account_name = :session and u.type = ('a'&'c') or u.account_name=:friend and u.type = ('a'&'c') order by u.time asc,c.time desc"; 

     $stmth=$conn->prepare($sql2); 
     $stmth->bindValue(":session",$_SESSION['uname']); 
     $stmth->bindValue(":friend",$friend); 
     //$stmth->bindValue(":statusid",$updateid); 
     $stmth->execute(); 
     $status_reply= $stmth->fetchAll(PDO::FETCH_ASSOC); 
     print_r($status_reply); 
     foreach ($status_reply as $row1) { 


       $status_reply_id=$row1['comment_id']; 
       $reply_author=$row1['author']; 
       $reply_d=htmlentities($row1['comment_body']); 
       $reply_data= stripslashes($reply_d); 
       $reply_osid=$row1['os_id']; 
       $reply_date=$row1['time']; 

     $reply_delete_button=""; 


       if ($reply_author==$_SESSION['uname']) { 
        $reply_delete_button="<li><a href='#'type='".$status_reply_id."' class='delete_reply_btn glyphicon glyphicon-trash delete_reply_".$status_reply_id."' title='Delete this comment'> Remove</a></span></li>"; 
       } 
       if ($reply_osid==$updateid && $isowner=="yes") { 
       $status_replies="<div class='replyboxes pull-left reply_".$status_reply_id."'>" 
         . "Reply by:- " 
         . "<a href='home.php?u=".$reply_author."'>".$reply_author."</a>" 
         . "<span class='pull-right'>".$reply_date 
         . "<b class='dropdown'> 
         <small><span class='btn btn-xs btn-danger dropdown-toggle pull-right' data-toggle='dropdown' > 
         <span class='glyphicon glyphicon-edit'></span></span> 
         <ul class='dropdown-menu'>".$reply_delete_button 
         . "<li><a class='glyphicon glyphicon-warning-sign' href='report.php?u=".$reply_author."'> Report</a><li></ul></span>" 
         . "</small></b><br><legend>". html_entity_decode($reply_data)."</legend><br></div>"; 
       } 
       elseif ($reply_osid==$updateid && $is_friend==TRUE && $session_uname!=$f_uname) { 
       $status_replies.="<div class='replyboxes pull-left reply_".$status_reply_id."'>" 
         . "Reply by:-" 
         . "<a href='home.php?u=".$reply_author."'>".$reply_author."</a>" 
         . "<span class='pull-right'>".$reply_date." 
          <b class='dropdown'> 
         <small><span class='btn btn-xs btn-danger dropdown-toggle pull-right' data-toggle='dropdown' > 
         <span class='glyphicon glyphicon-edit'></span></span> 
         <ul class='dropdown-menu'>".$reply_delete_button 
         . "<li><a class='glyphicon glyphicon-warning-sign report_btn report_".$updateid."' type='".$updateid."' href='report.php?u=".$reply_author."'> Report</a><li></ul></span>" 
         . "</small></b><br>" 
         . "</span><br><legend>". html_entity_decode($reply_data)."</legend><br></div>"; 

       } 
       else { 
        $status_replies.=""; 
       } 


     $updateid=$row1['update_id']; 

       $author=$row1['author']; 
       $post_date=$row1['time']; 
       $title= stripslashes($row1['title']); 
       $data= stripslashes($row1['update_body']); 
          $statusdeletebutton=''; 

       if ($author==$_SESSION['uname'] || $account_name==$_SESSION['uname']) { 
       $statusdeletebutton='<li>' 
          . '<a href="#" type="'.$updateid.'" class="delete_4_session hidden_text_delete_'.$updateid.' glyphicon glyphicon-trash delete_reply_btn" title="Delete this status and its replies">Remove</a></li>'; 
       } 


       $status_list= $statusui_edit.'<div attr="'.$updateid.'" type="'.$updateid.'" class="statusboxes status_'.$updateid.' jumbotron">' 
         . '<h3 style="color:black; margin-bottom:5px; margin-top:5px;" class="pull-left">' 
         . '<div id="'.$updateid.'" class="title_s_2copy" value="'.html_entity_decode($title).'">'.html_entity_decode($title).'</div></h3>' 
         . '<span class="pull-right">' 
         . '<div class="dropdown">' 
         . '<button type="button" class="btn btn-danger dropdown-toggle" data-toggle="dropdown" >' 
         . '<span class="glyphicon glyphicon-edit"></span></button>' 
         . '<ul class="dropdown-menu">' 
         . '<li><a href="#" attr="'.$updateid.'" type="'.$updateid.'" class="edit_4_session hidden_text_edit glyphicon glyphicon-pencil" title="Edit this status" >Edit</a></li>'.$statusdeletebutton.'</ul></div></span><br><hr>' 
         . '<legend><span class=" data_s_2copy" type="'.$updateid.'" >' 
         . html_entity_decode($data).'</span><br><br></legend><b style="text-align:right; color:black;"><small>Posted by:- <a href="home.php?u='.$author.'">'.$author. '</a> '.$post_date.'</small></b>' 
         . '<br><p>'.$status_replies.'</p><br>'; 

        $status_list= '<textarea id="reply_textarea_'.$updateid.'" class="status_reply_'.$updateid.' input-custom2" placeholder="comment\'s"></textarea>' 
          . '<button id="reply_btn_'.$updateid.'" attr="'.$updateid.'" type="b" class="btn btn-warning pull-right btn-sm reply_btn reply_'.$updateid.'">Reply</button></div>'; 


       echo "$status_list"; 




}   }  } 

$row1的var_dump值:

array(42) { 
    [0]=> 
    array(12) { 
    ["update_body"]=> 
    string(66) "<p>wsdcv uyhnb pl., dc kl, fvc yhb ikjm &nbsp;</p>" 
    ["author"]=> 
    string(12) "shan2batman1" 
    ["time"]=> 
    string(19) "2015-10-29 11:04:28" 
    ["title"]=> 
    string(3) "wtf" 
    ["account_name"]=> 
    string(12) "shan2batman1" 
    ["update_id"]=> 
    string(2) "46" 
    ["comment_body"]=> 
    string(21) "qwerty 2 shan2batman1" 
    ["os_id"]=> 
    string(3) "116" 
    ["author_c"]=> 
    string(12) "shan2batman1" 
    ["time_c"]=> 
    string(19) "2015-11-04 14:21:35" 
    ["comment_id"]=> 
    string(1) "5" 
    ["type_c"]=> 
    string(1) "b" 
    } 
    [1]=> 
    array(12) { 
    ["update_body"]=> 
    string(66) "<p>wsdcv uyhnb pl., dc kl, fvc yhb ikjm &nbsp;</p>" 
    ["author"]=> 
    string(12) "shan2batman1" 
    ["time"]=> 
    string(19) "2015-10-29 11:04:28" 
    ["title"]=> 
    string(3) "wtf" 
    ["account_name"]=> 
    string(12) "shan2batman1" 
    ["update_id"]=> 
    string(2) "46" 
    ["comment_body"]=> 
    string(16) "hello boogeyman!" 
    ["os_id"]=> 
    string(3) "116" 
    ["author_c"]=> 
    string(6) "qwerty" 
    ["time_c"]=> 
    string(19) "2015-11-04 13:20:32" 
    ["comment_id"]=> 
    string(1) "3" 
    ["type_c"]=> 
    string(1) "b" 
    } 
+0

如果你'echo $ sql3;',它给了什么? – Qirel

+0

它输出查询,并循环,因为它是在一个foreach循环@Qirel – shan2batman

+0

是的,当然它确定查询,但它看起来像什么?如果您看到查询的整个输出,则有时候更容易发现错误。 – Qirel

回答

0

第一件事就是添加你的PHP代码在那里你打印结果来看看它,现在按照下面的步骤进行。

你缺少从您的查询where条款,也on c.os_id=:statusid是错了,因为你是加盟的表

使用此我对c.os_id=c.comment_id的地方,但你必须在c.comment_id的地方插入你正确的列名因为我看不到你如何命名它。 :

$sql3="select u.update_body,u.author,u.time,u.title," 
       . "c.comment_body, c.os_id,c.author,c.time " 
       . "from updates u left join comment_update c " 
       . "on c.os_id=c.comment_id WHERE u.account_name = :session or u.account_name=:friend and (u.type = 'a' or 'c') order by u.time asc,c.time desc"; 
     $stmth=$conn->prepare($sql3); 
     $stmth->bindValue(":session",$_SESSION['uname']); 
     $stmth->bindValue(":friend",$friend); 

     $stmth->execute(); 

为运公布他得到的错误状态,这些值中的一个是空的检查,他们需要有一个值,而不是为空,当你不使用它也删除$stmth->bindValue(":statusid",$updateid);了这些值的误差,它会给你一个令牌和绑定参数的错误:

$stmth->bindValue(":session",$_SESSION['uname']); 
$stmth->bindValue(":friend",$friend); 
+0

尽管这可能是实际的解决方案,但您可能想要解释您所做的改变 - 以及*为什么必须改变,以便OP可以从中学习,而不是在没有从中学习任何东西的情况下完成他的工作。 – Qirel

+0

@Qirel是的,我打算这样做,但有紧急情况,不得不去,现在解释它 –

+0

不工作兄弟! @Arsh – shan2batman