gpt4 book ai didi

php - 使用 MYSQL 数据库帮助的结果将类指定为 PHP 表

转载 作者:太空宇宙 更新时间:2023-11-04 00:33:31 24 4
gpt4 key购买 nike

在 while 循环内,在下面的表格行中设置样式时没有显示边框?为什么?背景颜色设置工作正常,但不是这个......没有边框显示......

    // Build Result String
$display_table = "<table>";
while($row = mysql_fetch_array($qry_result)){

$display_table .= "<tr style='border-top-width: thin; border-top-style: solid;'>"; // wont work here, why?????

$display_table .= "<td width='110' rowspan='2'>BILD HÄR</td>";
$display_table .= "<td width='377' height='15'>$row[headline]</td>";
$display_table .= "<td width='67' rowspan='2'>$row[insert_date]</td>";
$display_table .= "</tr>";
$display_table .= "<tr>";
$display_table .= "<td height='15'>$row[price]:-</td>";
$display_table .= "</tr>";
}

$display_table .= "</table>";
echo $display_table;

最佳答案

不能用线

$display_table .= "<tr class="blablabla">"; 

因为如果你看,你会在 blablabla 之前关闭引号,所以 PHP 将其解释为 PHP,而不是字符串。

如果您需要在字符串中使用双引号,请将字符串用单引号引起来。

在上述情况下你会这样

$display_table .= '<tr class="blablabla">'; 

看看PHP's strings manual page

关于php - 使用 MYSQL 数据库帮助的结果将类指定为 PHP 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1572321/

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