I have a php array....
<?php $state = array("Kentucky", "Ohio", "West Virginia", "Indiana", "Texas");
How would I get this aray to report to this select list.
<select size="1" name="state" id="state">
<option>Select One</option>
</select>
<select size="1" name="state" id="state">
<?php
foreach($state as $state_name)
{
echo '<option value="' . $state_name . '">' . $state_name . '</option>';
}
?>
</select>
foreachandecho. See the manual for examples