what was the error? Load the page in your browser, then view the source. In particular, the line hwere you form tag is. Is the name of the script there? Copy and paste that line and let us know what the error message is and maybe someone can help.
As for your subscriber id variable being empty: do you have globals set to on or off? It would be a safer bet to assume they were off and do this:
delete the global $subscriberID line
and change your $sql line to
$sql = "SELECT * FROM subscribers WHERE subscriberID ='".$_POST["subscriberID"]."'";
Then echo it out and see what happens.
Cgraz