nope try what you did still got the same error i show u the connect.php script i got
without the die in
<?php
session_start();
$connect = mysql_connect("localhost", "gothcent_admin3", "shadow0ffear");
if($connect == TRUE) {
if(mysql_select_db("db") != TRUE) {
exit("<span style='color: red'>Can't connect to the MySQL database. Please contact the webmaster.</body></html>");
}
}else{
exit("<span style='color: red'>Can't connect to the MySQL server. Please contact the webmaster.</body></html>");
}
?>
with the die in
<?php
session_start();
$connect = mysql_connect("localhost", "gothcent_admin3", "shadow0ffear");
if($connect == TRUE) {
if(mysql_select_db("db") != TRUE) {
exit("<span style='color: red'>Can't connect to the MySQL database. Please contact the webmaster.</body></html>");
}
}else{
exit("<span style='color: red'>Can't connect to the MySQL server. Please contact the webmaster.</body></html>");
}
'die(mysql_error());'
?>