gpt4 book ai didi

php - SQL查询结果存入php表

转载 作者:行者123 更新时间:2023-11-29 13:13:45 26 4
gpt4 key购买 nike

我正在尝试将 SQL 查询的结果放入我的 WordPress 网站的表中。

我的表称为“statetable”

列是“State”、“num-Asn”和“Percent”

以下是我的自定义 php 模板中的代码。

   global $wpdb;
$results = $wpdb->get_results("SELECT * FROM statetable;");

echo "<table>";
foreach($results as $result){
echo "<tr>";
echo "<td>".$result->State."</td>";
echo "<td>".$result->num-ASN."</td>";
echo "<td>".$result->Percent."</td>";
echo "</tr>";
}
echo "</table>";


?>

我得到一张空表,其中一个单元格填满了零。我认为这可能不是最好的设置方法,或者我的 foreach 循环语法错误。

最佳答案

“num-ASN”是非法标识符名称。检查 $results 中的内容。

关于php - SQL查询结果存入php表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21761370/

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