gpt4 book ai didi

php - 根据从 MySQL 检索的数据填充 HTML 表头

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

我在编写代码时遇到了困难,需要你的帮助。我正在创建一个应用程序,其中患者的数据由医生存储在数据库中。我知道如何使用 PHP 将数据从 MySQL DB 检索到 HTML 表中。但是我不知道如何根据检索到的数据动态填充 HTML header 和数据。更具体地说,我只想显示医生规定的数据。

如果医生只开药,则仅应填充药物标题。如果医生仅开喷雾,则仅应填充喷雾标题,依此类推。

最佳答案

我不知道标题是什么意思,但是为了根据值填充 DOM,我根据返回的行制作控制语句

示例:

<?php 
if(mysqli_num_rows($the_query_variable) >= 1){
//the while loop for grabbing the data
?>
//these are the datas
<div>the results</div>

<?php
} else {
?>
//you don't even need to do this else statement if you don't want to say no results...
<div> no results found</div>
<?php
}

?>

关于php - 根据从 MySQL 检索的数据填充 HTML 表头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20919875/

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