gpt4 book ai didi

php - 如何使用$wpdb在wordpress上显示mysql表数据?

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

<?php 
global $wpdb;
$results = $wpdb->get_results("SELECT * FROM student");
while($row = mysql_fetch_array( $results )) {
echo $row['id'];
echo $row['name'];
}
?>

我只想显示 id 和 name 列值。

最佳答案

mysql_fetch_array 未在 WordPress 中使用,因为 get_results 函数已获取记录

foreach($results as $results1)
{
echo $results1->id;
echo $results1->name;
}

关于php - 如何使用$wpdb在wordpress上显示mysql表数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26481183/

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