You should also Never Disclose your database password or username!!!!!!!!!!!
When asking for help like this, either blank it out like this...
########## Database Info ##########
$db_server = 'localhost';
$db_name = '*****';
$db_user = '*****';
$db_passwd = '*****';
$db_prefix = 'smf_';
$db_persist = 0;
$db_error_send = 1;
Or Simply save the databse connect info to a seperate php file, then include it, like this..
include("connect.php");
In the file 'connect.php' you just have this...
<?PHP
########## Database Info ##########
$db_server = 'localhost';
$db_name = '*****';
$db_user = '*****';
$db_passwd = '*****';
$db_prefix = 'smf_';
$db_persist = 0;
$db_error_send = 1;
?>
Then when asking for help, you only copy and paste the
include("connect.php");
bit, so no-one knows your settings!
I would also advise you edit your post ASAP! 😃