gpt4 book ai didi

php - 使用任何 PHP 循环从数据库表创建多个 html 表

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

我正在尝试创建一段 PHP 代码,为数据库表中的每个数组创建一个 HTML 表。这样做的要点是,如果在数据库中添加新数组,将会创建一个新的 HTML 表。这是我现在的代码:

<?php
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>JOY FLOWERS</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<div id="outter">
<div id="top"></div>
<div id="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.php">Proionta</a></li>
<li><a href="contactus.html">Epikoinonia</a></li>
</ul>
</div>
<div id="body">
<div id="leftcol"></div>
<div id="midcol">

<?php
$con = mysql_connect ( "localhost", "root", "tei@123" ) or die ( "Αποτυχία σύνδεσης με τον Server<br />" );

mysql_select_db ( "proionta", $con ) or die ( "Αποτυχία σύνδεσης με την database<br />" );
$query = "SELECT * FROM proionta";

mysql_query ( "SET NAMES 'utf8';", $con );
mysql_query ( "SET CHARACTERS SET 'utf8';", $con );

$result = mysql_query ( $query, $con );
$row = mysql_fetch_array ( $result );
foreach ($row as $result);{

?>

<table>
<tr>
<th><img src="<?php echo $row["eikona"]?>" width="100%"</th>
</tr>
<td><?php echo $row["proion"]; ?></td>
</tr>
<tr>
<td><?php echo $row["timh"];?> ευρώ /τεμάχιο</td>
</tr>

</table>
<?php }?>

</div>
<div id="rightcol"></div>
</div>
</div>
</body>
</html>

我尝试使用 foreach 和 while 等循环,但失败了。考虑到这是我的第一个 PHP 项目,我对过去几天收到的所有信息感到有点迷失,所以我真的需要一些帮助关于这个..

这是我使用的 foreach 循环。我觉得 $row 和 $result 应该是相反的,但这是我不会收到错误的唯一方法。它只为第一个数组创建一个表。

提前致谢,请原谅任何英语错误

最佳答案

尝试这样的事情:

    while($row = mysql_fetch_array ( $result )) {
?>
<table>
<tr>
<th><img src="<?php echo $row["eikona"]?>" width="100%"</th>
</tr>
<td><?php echo $row["proion"]; ?></td>
</tr>
<tr>
<td><?php echo $row["timh"];?> ευρώ /τεμάχιο</td>
</tr>

</table>
<?php } ?>php

关于php - 使用任何 PHP 循环从数据库表创建多个 html 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28016519/

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