The following code is taken from a perfect working drop down list, and then when I put it into a function it breaks it! Am I doing something wrong here?
<?php
require "connect.php";
//create country lists
function records() {
$countryOptions = '';
$query = "SELECT DISTINCT country FROM regions";
$result = mysql_query($query);
if (!$result) {
$countryOptions = "<option>Error Retrieving Records</option>\n";;
}
else {
while ($row=mysql_fetch_assoc($result)) {
$countryOptions .= "<option value=\"{$row['country']}\">";
$countryOptions .= "{$row['country']}";
$countryOptions .= "</option>\n";
}
}
}
echo records();
?>
$countryOptionswill be lost – Pekka Apr 30 '11 at 22:22;;really is not necessary in line 11 ;) – Wh1T3h4Ck5 Apr 30 '11 at 22:31