$host = "localhost";
$username = "root";
$password = "";
// #1
$DBLink = mysql_connect("$host", "$username", "$password") or die("Could not connect to server...");
// #2
$DBLink = mysql_connect('localhost', 'root', '') or die("Could not connect to server...");
This is my conundrum, riddle if you will "how come #2 works when #1 dont?"
I know i shouldn't be using root to log on but keep in mind this is just an example.