Ejemplo n.º 1
0
//$section = new section();
if (isset($_GET['secno'])) {
    $secNow = $_GET['secno'];
} else {
    $secNow = 1;
}
?>
   
  <?php 
echo "<div id='leftColumn-layout1'>";
if (isset($_GET['catno'])) {
    $catNow = $_GET['catno'];
    $post = $postM->getPostByCat($catNow);
    echo '<h2>' . $post->getPost_title() . '</h2>' . '<p>' . $post->getPostcontent() . '<p>';
} else {
    $cID = $SectionCategorieM->getCategorieBySection($secNow);
    for ($y = 1; $y - 1 < sizeof($cID); $y++) {
        $categorie = $CategorieM->getCategorie($cID[$y]);
        $post = $postM->getPostByCat($cID[$y]);
        $str = $post->getPostcontent();
        // echo $catID[$y];
        //echo "<li><a href='".$catID[$y]."'>".$catID[$y]."</a></li>";
        //echo "<a href='index.php?secno=".$secNow."&catno=".$catID[$y]."'>Read More</a>";
        echo "<div id='postBox' >" . '<h4>' . $post->getPost_title() . '</h4>' . '<p>' . substr($post->getPostcontent(), 0, 100) . '<p>' . "<a href='index.php?secno=" . $secNow . "&catno=" . $cID[$y] . "'>Read More</a>" . "</div>";
        // echo substr($str,0,100).'<br/>'.'<br/>';
    }
}
echo "</div>";
//<div id="postBox" style="position: fixed; width:500; height:50;"></div>
//foreach ( $row as $sectiontemp ) {
//echo $director . "<br />";