OH! look what i did. i fixed it! I knew this was wrong. Late night Kier?
Find this, (at top)
Code:
require ("./forums/admin/config.php");
$db = mysql_connect('$servername','dbusername','$dbpassword');
mysql_select_db('$dbname',$db);
Replace with,
Code:
require("/forums/admin/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);
and i'm new to this php stuff too