我有一个非常基本的设置:一个名为“元素”的表,其中包含“正”、“负”、“类型”列,我需要选择所有元素并仅循环遍历具有“视频”类型的元素. 这是我现在拥有的:
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')
and while(($stmt->fetch()) && ( $type=='video ))
,但我没有得到任何结果。