gpt4 book ai didi

PHP 在 HTML 中获取和回显

转载 作者:搜寻专家 更新时间:2023-10-30 23:30:50 25 4
gpt4 key购买 nike

<?php  
include_once 'config.php';

$query = $config -> prepare("SELECT `edit`, `user_banned`, `ban_reason`, `ban_time`, `user_banner`, `ban_timestamp` FROM `samp_ban` ORDER BY `edit` ASC LIMIT 10");
if($query -> execute())
{
$query_results = $query->fetchAll();
if($ban_time == 0) { $query_result["ban_time"] = "Permanent"; }

}
?>

代码编辑代码编辑代码编辑代码编辑

错误: undefined variable :ban_time

最佳答案

您必须结合 html 和 php 才能从查询中获取所有数据

if($row_count)  
{
while($query_result = $query -> fetch()){
$Username = $query_result['Username'];
$Headshots = $query_result['Headshots'];
$ForumName = $query_result['ForumName'] ;
?>
<div class="row">
<div class="cell" data-title="Full Name">
<?php echo $Username ?>
</div>
<div class="cell" data-title="Headshots">
<?php echo $Headshots ?>
</div>
<div class="cell" data-title="Forum Title">
<?php echo $ForumName ?>
</div>
</div>
<?php
}
}

关于PHP 在 HTML 中获取和回显,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49315794/

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