gpt4 book ai didi

php - 从 mysql 数据库写入 html 时遇到问题

转载 作者:行者123 更新时间:2023-11-29 11:48:35 25 4
gpt4 key购买 nike

我有一个与 php 和 html 相关的问题。我正在尝试从 mysql 数据库写入表。

我的问题是:为什么它在写入表格之前写入文本“SEMIFINAL 2”,但在代码中表格却写在文本“SEMIFINAL 2”之前?

我真的需要一些帮助。非常感谢。

附注这是代码

    <html>
<style>
table {
color: #333;
font-family: Helvetica, Arial, sans-serif;
width: 640px;
border-collapse:
collapse; border-spacing: 0;
}

td, th {
border: 1px solid transparent; /* No more visible border */
height: 30px;
transition: all 0.3s; /* Simple transition for hover effect */
}

th {
background: #DFDFDF; /* Darken header a bit */
font-weight: bold;
text-align: center;
}

td {
background: #FAFAFA;
text-align: center;
}

/* Cells in even rows (2,4,6...) are one color */
tr:nth-child(even) td { background: #F1F1F1; }

/* Cells in odd rows (1,3,5...) are another (excludes header cells) */
tr:nth-child(odd) td { background: #FEFEFE; }

tr td:hover { background: #666; color: #FFF; } /* Hover cell effect! */
</style>
<?php
$host="localhost";
$username="root";
$password="";
$db_name="lol";
mysql_connect("$host", "$username", "$password") or die("cannot connect");
mysql_select_db("lol") or die("Cannot connect to database");

$query="call semi2";
$results = mysql_query($query);
print('<table align=center>');
print ("<tr>");
echo '<th>First Name</th>';
echo '<th>Last Name</th>';
echo '<th>Victories</th>';
echo "</center>";
$nr_val=0;



if($results === FALSE) {
die(mysql_error()); // TODO: better error handling
}

while($row=mysql_fetch_row($results)){
echo" <tr>\n";

foreach($row as $value){

echo "<td>$value</td>";

$nr_val++;
}
echo"</tr>";
}
$coln=mysql_num_fields($results);
$nr_inreg=$nr_val/$coln;

echo "<br>";
echo "<center>";
if ($nr_inreg>0)
echo "SEMIFINAL 2";

else
die ("Can't find any recording....");

echo "</center>";

mysql_close();
?>

</html>

最佳答案

  • 您忘记了闭合表标签
  • 您的表格标题中似乎放错了一个中心闭合标签

在输出文本之前添加关闭表标记 close

关于php - 从 mysql 数据库写入 html 时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34532460/

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