获取特定帖子

时间:2015-11-29 19:56:26

标签: php mysql sql

我试图获得' related'的价值。我的数据库中的列用于特定帖子。

这是我迄今为止所尝试过的......

submit_post.php($ var-> get_relateCount)

// Construct
public function __construct($content, $emotion)
{
    $this->content = $content;
    $this->emotion = $emotion;
    $this->post = 
        "<div id=\'post\'>
            <div id=\'postContent\'>
                <p><b>I\'m $this->emotion because</b> $this->content<span class=\'emot\'id=\'$this->emotion\'></span></p>
            </div>
            <div id=\'postInfo\'>
                <span class=\'postRelate\' title=\'Click to relate +1\'><p><b>relate</b> (**<?php $var->get_relateCount($conn,'$this->content') ?>**)</p></span>
                <span class=\'postSubmitted\'><p>submitted 2 minutes ago</p></span>
            </div>
        </div>";     
}

get_post.php

// Get relate count
public function get_relateCount($conn,$content)
{
    // SQL INSERT command
    $sql = 
    "
    SELECT relate FROM userPost
    WHERE content = '$content'
    ";
    $result = $conn->query($sql);

    if ($result->num_rows > 0) {
        while($row = $result->fetch_assoc()) {
            echo $row["relate"];
            echo "test";
        }
    } else {
        echo "X";
    }
}

get_post.php回显所有帖子(存储为数据库中的div)到Feed上。

所以要明确一点:我希望得到“关联”的统计数据。特定帖子的列,这就是为什么在我的查询中我将其指定为 WHERE content =&#39; $ content&#39;

如果我很难理解我正在寻找的东西,那么问题会更清楚吗?目前,它正在回应PHP代码本身。

0 个答案:

没有答案