Ooooh! Index.php? This right? Maybe I could put it there? :P
PHP Code:
<?php
include("inc/functions.php");
include("inc/bbcode.php");
//***************//
// START SCRIPT //
//***************//
getpage('index');
// Convert the BBCODE to HTML
$article_content = bbconvert($article_content);
// Convert line breaks to <br>
$article_content = nl2br($article_content);
//***************//
// OUTPUT PAGE //
//***************//
echo showpage($article_title, $article_content, $date);
?>