<td width="186" align="right"><label for="collegetxt"></label>
<select name="collegecategory" dir="rtl" id="collegecategory" class="title">
<option value="-1">Choose college</option>
<?php
$rs=$db->GetAllCollegCategory();
while(list($name)=mysql_fetch_array($rs)){
echo "<option ".($collegSearch==$name?" selected=selected ":"")." value='$name'>$name</option>";
} ?>
</select>
</td>
</tr>
<tr>
<td> <strong>Teacher Number:</strong></td>
<td width="217" align="right"><label for="Teachesearch"></label>
<label for="TeacherNo"></label>
<input type="text" name="TeacherNo" id="TeacherNo" class="title" checked="checked"/></td>
<input type="submit" name="evlBtn1" id="evlBtn1" value="Evaluate" style="width:119px;height:39px;font-size:16px;" />
Hi,
i don't know how to keep the <input type="text"/> selected whenever i've pressed the Evaluate button
as the <select> value above was seleced ?!!
how can i keep it checked or selected..?!!