I am a confused lad. I copied all these files into an html file and renamed the file .php, then I uploaded to the sever and placed it in the ./forums folder along with the other html files and .php file I was told to upload from the upload folder.
What am I doing wrong?
<?php
chdir('./forums');
require_once('./vBExternal.php');
?>
<?php
output_NewestMembers(5);
?>
<?php
output_TopPosters(5);
?>
<?php
output_NewestThreads(5,"1,2,3");
?>
<?php
output_NewestReplies(5,"1,2,3");
?>
<?php
output_News(5,4);
?>
<?php
output_UsersOnline();
?>
|