0

我的代码

    <?php
    include('ConnectToDb.php');

    $query = "SELECT * FROM News WHERE NewsFlag = 1 ORDER BY PostDate DESC";
    $arrCount = -1;
    $result = mysql_query($query) or die(mysql_error());
    while($row = mysql_fetch_array($result)){
        $ID=$row['ID'];
        $PostDate = $row['PostDate'];
        $NewsHeader = stripslashes($row['NewsHeader'])
;
        $NewsStart = stripslashes($row['NewsStart'])
;
            echo "<hr>";
            echo "<div>". date('j F Y',strtotime($PostDate)). "</div>";
            echo "<p>";
                $news_id = strval(sprintf("%1$04d",$ID));
                $array = scanImageFolder("newsImages/newsThumbs",$news_id);
                if(count($array)>0) {
                    echo "<img src='". $array[0]. "' alt='' />";
                }
            echo "<h2 style='text-align:center'><u><a href='latestnews_full.php?ID=$ID'>". $NewsHeader. "</a></u></h2>";
            echo "<div style='text-align:left'><h3>";
            echo $NewsStart. " ......<a href='latestnews_full.php?ID=$ID'>(more)</a><br />";
            echo "<div style='text-align:center'>";
            echo "</div>";
            echo "</h3></div>";
    }
?>

在四行上很好地显示我的数据,顶部是日期,然后是图片、标题和描述。

但是,我想将数据显示为这样的表格

    <table style="width: 100%">
    <tr>
        <td colspan="2">postDate here</td>
    </tr>
    <tr>
        <td rowspan="2">picture here</td>
        <td>newsHeader here</td>
    </tr>
    <tr>
        <td>newsStart here</td>
    </tr>
</table>

我不确定如何正确地回显表格单元格,到目前为止我的所有尝试都导致了一个白页。有人可以请教我吗?

4

1 回答 1

1

我建议你把你的逻辑与你的表现部分分开。准备好获取结果、分配 var 等后关闭 PHP 标记,然后:

<table style="width: 100%">
<?php
//yourcode
//...
//...
$NewsStart = stripslashes($row['NewsStart']);
$news_id = strval(sprintf("%1$04d",$ID));
$array = scanImageFolder("newsImages/newsThumbs",$news_id);
?>


 <tr>
    <td colspan="2"><?= date('j F Y',strtotime($PostDate)) ?></td>
 </tr>

 <tr>
   <?php
 if(count($array)>0) {
                ?>
    <td rowspan="2"><img src='<?= $array[0] ?>' alt='' /></td>
 <?php } ?>
    <td><?= $NewsHeader ?></td>
 </tr>
 <tr>
    <td><?= $NewsStart ?> </td>
 </tr>

<?php } ?>
</table>

但是,它又不是那么清楚,我建议使用模板引擎。如果您愿意,我可以发布一个将变量分配给 Smarty 的代码,并在 Smarty 模板中输出您的演示文稿

于 2013-03-29T22:51:39.743 回答