//Buffer larger content areas like the main page content
ob_start();
include 'destaques.php';
if($_GET['id']!='' && $_GET['id']!=NULL) {
$noticia_read = getNoticiaById($_GET['id']); }
else {
$noticia_read = new SingaNULL(); }
?>
| echo $noticia_read->getBoxTitulo();?> |
» echo $noticia_read->getNome();?>
echo $noticia_read->getData();?>
|
echo nl2br($noticia_read->getTexto());?>
|
|
|
|
//Assign all Page Specific variables
$page_content = ob_get_contents();
ob_end_clean();
$page_title = "Singa FM » Informação » ".$noticia_read->getNome();
//Apply the template
include("master.php");
?>