Ejemplo n.º 1
0

	<div class="box">
		
			<?php 
$list = $object->getFiveLast();
foreach ($list as $article) {
    echo "<div class='index'>";
    echo '<a class="indexLink" href="news.php?art_id=' . $article->News_id . '">';
    echo "<h3>" . $article->News_title . " - " . $object->dateReducted($article->News_date) . "</h3>";
    echo "</a>";
    echo "<p>" . $article->News_sumup . "</p>";
    echo "<em> Author : " . $article->News_author . "</em>";
    echo "<div class='marged'>";
    // 					echo "<table><tr>";
    foreach ($object->splitTags($article->News_tag) as $tag) {
        // 						echo "<td>".$tag."</td>";
        echo "<span>" . $tag . "</span>";
    }
    echo "</div>";
    // 					echo "</tr></table>";
    echo "</div>";
}
?>





			<?php 
include "bottom.php";