<?
$conn = mysql_connect("localhost", "your_username","your_password") or die(mysql_error());
mysql_select_db('your_database', $conn) or die(mysql_error());
?>
this is the code i have on database.php, when i run register page i get a erro.
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'your_username'@'localhost' (using password: YES) in /home/a4595523/public_html/database.php on line 2
Access denied for user 'your_username'@'localhost' (using password: YES)
what should i do / change?