gpt4 book ai didi

php - 冲突 FOREACH MySql SELECT PDO

转载 作者:行者123 更新时间:2023-11-30 22:51:11 26 4
gpt4 key购买 nike

如何修复 foreach mysql PDO 中的冲突我尝试使用其他循环函数但没有给出结果,比如 while.this 我的脚本

mysql PDO 查询,像这样:

<?php
function calldata($table){
$db = dbConn::getConnection();

$sql = "select * from ".$table."" or die(mysql_error());
$q = $db->query($sql) or die("failed!");
while($res = $q->fetch(PDO::FETCH_ASSOC)){
$record = array_map('stripslashes', $res);
$db->records[] = $record;
}
return $db->records;;
//else echo "No records found";
}
?>

并显示结果,如下所示:

<table>
<tr><td>Category</td><td>
<select>
<option value="0">- select -</option>
<?php
try{
$db = dbConn::getConnection();
$table='str_prod_category';
$recordscat = calldata($table);
if(count($recordscat)){
foreach($recordscat as $key1=>$Recordcat){
?>
<option value="<?=$Recordcat['id_category'];?>"><?=$Recordcat['cat_name'];?></option>
<?php }}}catch (PDOException $e) {
//Output error - would normally log this to error file rather than output to user.
echo "Connection Error " . $e->getMessage();
} ?>
</select>
</td></tr>
<tr><td>Brand</td><td>
<select>
<option value="0">- Select -</option>
<?php try{
$db = dbConn::getConnection();
$table1='str_prod_brand';
$recordsbrand = calldata($table1);
if(count($recordsbrand)){
foreach($recordsbrand as $key2=>$Recordbrand){
?>
<option value="<?=$Recordbrand['id_brand'];?>"><?=$Recordbrand['brand_name'];?></option>
<?php }}}catch (PDOException $e) {
//Output error - would normally log this to error file rather than output to user.
echo "Connection Error " . $e->getMessage();
} ?>
</select>
</td></tr>
</table>

这段代码可以正常显示数据,但是对于选择品牌的选项,有一个空选择,然后是空数据之后的正确数据。

如何解决这个问题?我已经尝试将循环从 foreach 更改为 while 但没有给出结果。

谢谢

最佳答案

我尝试使用 if 过滤器,它可以删除空白重新编码

foreach($recordsbrand as $key2=>$Recordbrand){
if($Recordbrand['brand_name'] == ''){}else{
<option value="<?=$Recordbrand['id_brand'];?>"><?=$Recordbrand['brand_name'];?></option>
}}

但是,我不知道是好还是坏。

关于php - 冲突 FOREACH MySql SELECT PDO,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28104311/

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