View Single Post
  #4  
Old 02-27-2010, 01:10 PM
Arianna's Avatar
Arianna Arianna is offline
Dev Staff
 
Join Date: Sep 2009
Posts: 334
Gender: Female
Credits: 32,079
Arianna will become famous soon enough
Default RE: Index content on levelup pages?

Look at this part, there's a problem - you're getting the index content from the database.
PHP Code:
// **********************************************************************
// Grab any dynamic article content from the content table
// **********************************************************************

$pagecontent getsitecontent("index");
$article_title $pagecontent[title];
$article_content $pagecontent[content];
$article_content nl2br($article_content); 
Remove this, and now see if it works. ;)
Reply With Quote