SELECT DISTINCT -- so simple, thanks!
Under what circumstances would the second method be preferable?
js
Brandon Schnell wrote:
either:
SELECT DISTINCT country FROM table;
or:
run through the entire result set using mysql_fetch_array. if the country doesn't already exist in a 2nd array you've created, add it. once finished, run through the new array outputing the values into a pull down menu.