I want to connect PHP with phpMyAdmin 2.2.0.
The login page is at:
http://216.127.68.138/MyAdmin
$uID = "something";
$pwd = "something";
$host = "http://216.127.68.138/MyAdmin";
$link = mysql_connect($host, $uID, $pwd);
But it gives this error:
Warning: Unknown MySQL Server Host 'connielovely.com/admin' (2) in /home/virtual/site36/fst/var/www/html/site/db_conn.php on line 8
Please help me in connecting with the database.
Thanks.