View Single Post
  #22  
Old 11-14-2011, 02:37 PM
Gashu's Avatar
Gashu Gashu is offline
Member
 
Join Date: Nov 2011
Posts: 31
Gender: Female
Credits: 4,998
Gashu is on a distinguished road
Default

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);
?>
Reply With Quote