私は非常に基本的な設定をしています:「要素」と呼ばれるテーブルで、「ポジティブ」、「ネガティブ」、「タイプ」の列があり、すべての要素を選択し、「ビデオ」のタイプを持つものだけをループする必要があります. これが私が今持っているものです:
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 ))
、結果が返されません。