0

私は非常に基本的な設定をしています:「要素」と呼ばれるテーブルで、「ポジティブ」、「ネガティブ」、「タイプ」の列があり、すべての要素を選択し、「ビデオ」のタイプを持つものだけをループする必要があります. これが私が今持っているものです:

require_once 'dbcon.php';

    $stmt = $db->prepare("select positive, negative,type from elements");
    $stmt->bind_result($pos,$neg$type);
    $stmt->execute();

    while($stmt->fetch()){
        echo $type
    }

if($type=='video')とを試しましたがwhile(($stmt->fetch()) && ( $type=='video ))、結果が返されません。

4

1 に答える 1

1

WHEREしたがって、クエリ自体に適用する必要があります。

SELECT `positive`, `negative`, `type` FROM `elements` WHERE `type`='video'
于 2013-10-09T06:48:40.347 に答える