0

我正在尝试找到一种方法以这种方式在 HTML 中显示来自 SQL 的表,如下面的 html 部分所示:

html

 <table>
    <tr>
    <td><a><img src="" width=135 height=100/></a></td>
    <td><a><h2>Title</h2></a><p>DDMMYY</p><p>Description</p></td>
    </tr>
 </table>

我当前的脚本只在一行中输出结果,如下所示:

PHP

<?php    
    $stmt = $db->prepare('SELECT title, tag, desc FROM Tbl1;'); 
    $stmt->execute();
    $res = $stmt->fetchAll(PDO::FETCH_ASSOC);

    echo "<table>";
    foreach($res AS $val) {
        echo "<tr>";
        foreach($val AS $val1) {
            echo "<td>$val1</td>";
        }
        echo "</tr>";
    }
    echo "</table>";
    $db = null;
?>
4

1 回答 1

0
$stmt = $db->prepare('SELECT title, tag, `desc` FROM Tbl1;');
$stmt->execute();
$results = $stmt->fetchAll(PDO::FETCH_ASSOC));
echo '<table>';
for($results as $row) {
    echo '<tr>';
    echo '<td>' . $row['imagefield'] . '</td>';
    echo '<td style="text-align: right">' . $row['description'] . '<br />' . $text . '</td>';
    // etc...
    echo '</tr>';
}
echo '</table>';

这段代码没有理由不显示有效的表格。

于 2013-01-18T09:05:48.427 回答