で整理してみましたが、whileループを正しく使用していないため、多くの時間を浪費していますが、私は苦労しています。私はここでtype_id = 1,2,3,4に対して4回実行し、結果を$ vehicle1、$ veh2、ectに出力します。いくつかのtype_idが存在するかどうかを確認して実行する方法はありますか?mysqlの結果をPHPの
$result = mysqli_query($con,"SELECT * FROM vehicles WHERE type_id=1 AND verified='$yes' ORDER BY description");
while($row = mysqli_fetch_array($result)) {
$description = $row['description'];
$description = strtoupper($description);
$id = $row['id'];
$count++;
$vehicles1 .= "<a href=\"#entered-details\" onclick=\"$('#entered-details').show(); document.getElementById('vehicle_id').value='$id';document.getElementById('vehicle_list').value=''+document.getElementById('vehicle_list').value+'$id'+':';vehicle_selected.innerHTML = '$description';elt.tagsinput('add', { 'value': $id , 'text': '$description' , 'type': '$type_id', 'type_id': '1' });$('#show_new').show();\" class=\"btn new2 dodgerbluemenu\">$description</a>";
}
$vehicles1 .="<div><button id ='add_exec_button' type='button' class='btn btn-add-vehicles btn-danger'>Add executive vehicle</button></div>";
$vehicles1 .="<div style='margin-bottom: 5px'></div>";
このコードは現在の状態で機能しますか? – GrumpyCrouton
はいはいうまく動作しますが、前に行ったことから、私はループについて少し学ぶ必要があると思います。 – zak
ここでは既にループを使用していますが、コードを見直して改善できるかどうか確認しています。 – GrumpyCrouton