hey,
i am trying to connect to my phpmyadmin database via PHP
here is my code:
<?php
// place your DB_host, UserName, Password, and DB_Name below where shown
mysql_connect("localhost","gypktube@localhost","myPassword") or die ("Could not connect.");
mysql_select_db("chatData") or die ("no database");
?>
and the warning i am getting is:
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'gypktube@localho'@'localhost' (using password: YES) in /home/gypktube/public_html/connect_to_mysql.php on line 3
Could not connect.
thanks:)