in your original post, you show (part of?) the html form:
<input type="submit" align="center" value="Retrieve this Flight Plan" />
...your submit button is not named, so:
isset($_POST['submit'])
will always be false, and nothing will happen.
if that is the submit button you're looking for, change it to:
<input name="submit" type="submit" align="center" value="Retrieve this Flight Plan" />
also, in addition to the $fltnum issue mentioned above, you check for your DB connection like so:
$con = mysql_connect('mysql7.**********.com', 'a*****n', 'T*****9');
if(!con)
// forgot the $ !
if(!$con)