$connection = mysql_connect("localhost", "blank", "$blank");
$mysql_select_db("blank")
that 2nd line there looks a little shaky to me.
do something like this:
$connection = mysql_connect("localhost", "blank", "$blank");
$db_select = mysql_select_db("blank",$connection);
i've never used that function, but i looked :here:
EDIT::: oh oh, also where $blank is, if $blank has quotes around it, i think that may be your problem. if there are quotes in $blank, either take the quotes out of mysql_connect or remove the quotes from $blank.
so.. like if blank is something like this
$blank = "mydatabase";
either do this in your code:
$connection = mysql_connect("localhost", "blank", $blank);
$db_select = mysql_select_db("blank",$connection);
or remove the quotes in $blank and use:
$connection = mysql_connect("localhost", "blank", "$blank");
$db_select = mysql_select_db("blank",$connection);