Hi, I have the following:
$result = mysql_query( "SELECT DISTINCT Departure FROM `$division` WHERE `Aircraft`='$aircraft' UNION SELECT DISTINCT Arrival FROM `$division` WHERE `Aircraft`='$aircraft'" )
or die("SELECT Error: ".mysql_error());
$num_rows = mysql_num_rows($result);
And then I display that in a table... The only problem is is that I would like it to order the whole thing after it has combined them into alphabetical order. For example, Departures and Arrivals have city names and after I combine them I need it to order them all.
Thanks!