I want to create a login system of my website,so I read this page
http://www.codingcage.com/2015/01/user-registration-and-login-script-using-php-mysql.html
and also I create a MySql database
and I got this message:"oops database selection problem ! -->
Access denied for user 'a9891486_UsersID'@'10.1.1.31' to database 'dbtest'"
and I know it is some thing wrong in my dbconnect.php
dbconnect.php code:
<?
if(!mysql_connect("mysql9.000webhost.com","Username","Password","dbtest"))
}
die('oops connection problem ! --> '.mysql_error());
}
if(!mysql_select_db("dbtest"))
}
die('oops database selection problem ! --> '.mysql_error());
}
?>
and I know what is "Username" and "Password"
THANK A LOT!!!!!!!!!!!!!!!!!!!