gpt4 book ai didi

php - 使用 php 查看 mysql 的结果

转载 作者:行者123 更新时间:2023-11-29 10:42:27 27 4
gpt4 key购买 nike

解决了之前的问题后,我发现我浪费了很多时间,因为我没有正确使用 while 循环,但我正在努力解决它们。我这里有这段代码,我为 type_id=1,2,3,4 运行 4 次,然后将结果输出到 $vehicle1、$vehicles2 等中。有没有办法运行它来检查有多少 type_id,然后运行它们并得到与下面相同的输出结果?

$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>";

最佳答案

考虑以下因素;

<?

$vehicles_array = array();

$types = array(1,2,3,4);
foreach($types as $value) {
$result = mysqli_query($con, "SELECT * FROM vehicles WHERE `type_id`='{$value}' AND `verified`='{$yes}' ORDER BY description");
while ($row = mysqli_fetch_array($result)) {
$description = strtoupper($row['description']);
$id = $row['id'];
$vehicles1 .= <<<STRING
<a href="" onclick="onClickAction('{$id}', '{$description}', '{$type_id}')" class="btn new2 dodgerbluemenu">{$description}</a>
STRING;
}
$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>";
array_push($vehicles_array, $vehicles1);
}
?>

<script>
function onClickAction(id, description, type_id) {
$('#entered-details').show();
$('#vehicle_id').val(id);
$('#vehicle_list').val($('#vehicle_list').val()+id+":");
vehicle_selected.innerHTML = description;
elt.tagsinput('add', { 'value': id , 'text': description, 'type': type_id, 'type_id': '1'});
$('#show_new').show();
}
</script>

我在这里做的主要事情是添加一个 foreach 循环,您可以在其中将要检查的值指定为数组。

此外,如果可能的话,您希望避免使用内联 javascript,因此我取出了您的内联 javascript 并将其放入自己的函数中,我还将您的 javascript 从使用 javascript/jquery 随机选择内容更改为仅使用 javascript。

您可以使用 $vehicles_array 数组访问每个车辆链接,方法是执行 $vehicles_array[0]; 或 1、2、3 等,或者使用 foreach循环只用几行代码输出每一行(可能是 3 行)

我可能在这里错过了一些东西,因为很难说出你真正需要什么,这可能更属于 Code Review不仅仅是 StackOverflow

关于php - 使用 php 查看 mysql 的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45222480/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com