|
Without spending a ton of time figuring out your variable names, you're going to change this line to something like "if name is selected, mark it selected"
From:
echo '
<option value="'.$col[$loop][2].'">'.$col[$loop][1].'</option>';
To:
echo '<option value="' . $col[$loop][2] . '"';
if($col[$loop][2]==$_POST['pet'])
echo ' SELECTED';
echo '>'.$col[$loop][1].'</option>';
|