View Single Post
  #27  
Old 11-15-2011, 07:20 AM
mapleblade mapleblade is offline
Epicness sausage
 
Join Date: May 2009
Posts: 180
Gender: Male
Credits: 28,859
mapleblade
Default

oh oops sec..

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); 

$query "SELECT * FROM {$prefix}adoptables ORDER BY id DESC LIMIT 5";
            
$result runquery($query);
            
while(
$row mysql_fetch_array($result)){

$image getcurrentimage($row['id']);
article_content .= '<img src="{$image}" /><br /><b>{$row['type']}</b>';  
}
//***************// 
//  OUTPUT PAGE  // 
//***************// 

echo showpage($article_title$article_content$date); 
?>
__________________
Need coding help? send me a PM! :)
Reply With Quote