• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Znote AAC] Advanced News System

anyone get this working?? last thing I want is to foul up everything I got working so far
 
I installed this but it looks the same as it did before I started lol
I copied it correctly to the www folder, made sure it was correct layout folder, imported the sql file but I have none of the adnvenced BB code option thats in the screen shot
 
BUMP

Code:
News
Create a new article."; } } while($row = mysql_fetch_array($result)){ echo '
'; echo '
'.$row['title'].'
'; echo '
Posted on '.date('F j, Y',$row['date']).''; if(!empty($row['author'])){ echo ' by '.$row['author'].'
'; }else{ echo '
'; } echo '
'; echo $row['content']; echo '
'; echo ''; } ?>
 
I have only that error:
Code:
Notice: Undefined variable: user_data in C:\xampp\htdocs\ZNOTETEST\index.php on line 24
 
Code:
News
Create a new article."; } } while($row = mysql_fetch_array($result)){ echo '
'; echo '
'.$row['title'].'
'; echo '
Posted on '.date('F j, Y',$row['date']).''; if(!empty($row['author'])){ echo ' by '.$row['author'].'
'; }else{ echo '
'; } echo '
'; echo $row['content']; echo '
'; echo ''; } ?>

I get this, is there a way to have it like it was before?
 
Back
Top Bottom