0

我试图在下面的示例中放置一个标签,但表格显示在 tableWrapper div 之外,tableWrapper div 正确显示我想要但表格在它之外,我不明白我在做什么错,有人可以帮忙吗?:

//the buttons 
$html .= '<p><form method="post" action = "DBTest.php" >
    <input type="submit" name="create" value="Create">
    <input type="submit" name="save" value="Save">
    <input type="submit" name="reset" value="Reset">
    </form></p>';   


//start table
$html.= '<div id = "tableWrapper"><table>';

foreach($rows as $row)
    {

         $id= $row['id'];
         $title = $row['title'];
         $year = $row['YEAR'];
        //put everything on a table
        $html.= "<tr><td>" . $row['id'] . "</td><td>" . $row['title'] . "</td><td>"  . $row['year'] . "</td><td>";
     }
$html.= '</table></div>';    

//the main body
$alpha['main'] = <<<EOD

{$html}

EOD;

这是我的 tablWrapper div:

#tableWrapper{
    clear:both;
    width: 350px;
    height: 350px;
}

这是我的表格 css:

table {margin-bottom:1.4em;}
th {font-weight:bold;background:black;color:white;}
th,td,caption {padding:4px 10px 4px 5px;}


tbody tr:nth-child(even) td {background:#A1912A11;}
tbody tr:hover td {background:#9E9E80;}

先感谢您


SQLite 中的拆分应用组合

是否有 SQLite 等效by或拆分应用组合策略?

具体来说,我有一个带有 columns 的表firm,flagfirm是一个取几百个值的整数(一个公司 id),flag是一个取值 {0,1} 的整数。每个公司有数百个条目。我想计算每个公司的标志平均值,然后将其存储在同一个表中(我知道效率不高,因为每个值都会重复多次)。

4

1 回答 1

4

错别字:

    $html.= "<tr><td>" [...snip...] . "</td><td>";
                                            ^^^^

您永远不会关闭<tr>标签,并以新的 unterminated 结束该行<td>。所以你最终得到

<div><table>
<tr><td>...</td><td>..</td><td>
<tr><td>...</td><td>..</td><td>
etc...
于 2013-11-12T14:35:40.583 回答