Thread: Form Validation
View Single Post
Old Feb 28th, 2006, 11:56 AM   #7
Lich
Professional Programmer
 
Lich's Avatar
 
Join Date: May 2005
Location: Detroit
Posts: 254
Rep Power: 4 Lich is on a distinguished road
Send a message via AIM to Lich Send a message via MSN to Lich
This is just off the top of my head, but this is the basic jist of it
[PHP]echo "<select name=\"country\">";
foreach($ArrCountry as $value => $country)
{
echo <option value=\"$value\">$country</option>";
}
echo "</select>";[/PHP]
__________________
--John Cruz
Web Developer
www.cruzweb.net
Lich is offline   Reply With Quote