Hi
This is just a straight-forward dynamic field, but I still can't seem to get it to stay sticky....I have tried all kinds of things, including
if (!empty($add_area)) echo......
or equivalent fieldnames...
Any help would be really appreciated...many thanks
<label for="add_area"></label>
<select name="add_area" id="add_area">
<?php
do {
?>
<option value="<?php echo $row_rs_areas['district_area']?>"><?php if (!empty($add_area)) echo $row_rs_areas['district_area']?></option>
<?php
} while ($row_rs_areas = mysql_fetch_assoc($rs_areas));
$rows = mysql_num_rows($rs_areas);
if($rows > 0) {
mysql_data_seek($rs_areas, 0);
$row_rs_areas = mysql_fetch_assoc($rs_areas);
}
?>