<ol>
<?php foreach ($articles as $article) { //start of the loop
?> //interruption to allow html to be passed rather than echoed
<h3><li>
<a href="article.php?id=<?php echo $article['article_id']; ?>"><?php echo $article['article_title']; ?></a>
<small> postat la
<?php
echo date('d.m.Y', $article['article_timestamp']);
?>
</small>
</li></h3>
<?php //'starting' php again to close the loop
} ?> //closing loop and coming back to html to allow closing the </ol>
</ol>
但我仍然不知道为什么我没有从订购的数据库中获取元素。
我得到的看起来像:
“1。” Lorem Ipsum postat la 28.02.2013
“1。” 一些文本 postat la 28.02.2013(我在它们周围加上引号,因为 stackoverflow 它似乎默认自动递增)
代替
- Lorem Ipsum postat la 28.02.2013
- 一些文本 postat la 28.02.2013
尽管 Chrome 按应有的方式显示(1 和 2)Opera 和 Internet Explorer 为每个条目显示 1。谢谢!