thank you.... again. I didn't want to create a table for country tables.i thought it is possible withouth create a country table.Anway, I just use the following code.... and i ugess this way is better then using array..cause there are 238 countries ...
$result2=mysql_query("select country, country_name from yp_country order by country_name", $dbi);
echo "<select name=\"country\">";
while(list($country2, $country_name) = mysql_fetch_row($result2)) {
if ($country2==$country) {
$sel = "selected";
} else {
$sel = " ";
}
echo "<option value=\"$country2\" $sel>$country_name</option>";
}