$server="localhost"; $user="CAS"; $pw="lotuselanK1!"; $cn = mysql_connect ($server,$user,$pw) or die('Database unavailable. Please try again later.'); mysql_select_db("csdb"); $drp_air = $_REQUEST['drp_air']; if (!isset($drp_air)) { $drp_air = 0; } echo "\n"; echo "
\n"; echo "Airline Baggage Allowance Information
\n"; echo "\n"; echo "
Following many discussions on uk.rec.scuba about which airlines\n"; echo "give what baggage allowance and which offer extra capacity for dive gear, UKRS' Alun Harford sent out\n"; echo "a bulk email to every airline he could find and posted the results on UKRS.
\n"; echo "\n"; echo "
What we have here is a collation of Alun's information, links to Airline's baggage allowances on their\n"; echo "websites, and anecdotal tales from UKRS and other places.
\n"; echo "\n"; echo "
All information is clearly labelled as to where it came from, obviously give more weight to anything that\n"; echo "can be atributed to an employee of the airline in question.
\n"; echo "\n"; echo "
A list of the Airlines I've tried to find on the web and failed are here.
\n"; echo "\n"; echo "
Finally, if you have anything to contribute to these pages let me know.
\n"; echo "\n"; echo "\n"; if (isset($Go)) { get_airline(); } echo "\n"; echo "\n"; function get_airline() { global $drp_air; $sqlq = "select * from air_line "; $sqlq .= " left join air_comment on air_line.air_ID = com_air_id"; $sqlq .= " left join air_comsort on air_comment.com_srt_id = srt_id"; $sqlq .= " where air_id = ".$drp_air; $sqlq .= " order by srt_sort"; $rs = mysql_query($sqlq); $NumRows = mysql_num_rows($rs); for ($i=1;$i<=$NumRows;$i++) { $k = mysql_fetch_row($rs); echo "
\n"; echo "
\n"; echo "
".$k[1]."
\n"; echo "\n"; echo "
Baggage info on website: "; if ($k[2] != '') { echo "Yes - "; echo $k[3]; } else { echo "No"; } echo "
\n"; echo ""; echo "
Source: ".$k[8]." (".$k[10].")
\n"; echo ""; echo "
".$k[6].""; } } } ?>