Well, not that it's that important, but you could change
if( !@mysql_select_db("nuke", $sqlID) )
{
print("<br>Could not select the database 'nuke'");
//exit;
}
into
mysql_select_db("nuke", $sqlID) or die(mysql_error());
Again.. just a tip. Hmm.. The rest of the code..
As fot the rest, it looks fine to me. I'm sorry that I can't help you more.