Below is the list menu of search engine.. How to code if i want to put
Interface
php code
The code above is function, but when i add ALL between <option selected></option> as below:
<option selected>ALL</option>
it cannot function, so, can anyone give me some guildeline... Thanks..
Code:
<option selected>ALL</option>
Code:
<tr>
<td>Job Category:</td>
<td><select name="jobCategory">
<option selected></option>
<option>Accounting</option>
<option>Advertising</option>
<option>Agriculture</option>
<option>Banking</option>
</select></td>
</tr>
<tr>
<td>Job Location:</td>
<td><select name="jobLocation">
<option selected></option>
<option>Perlis</option>
<option>Penang</option>
<option>Kedah</option>
</select></td>
</tr>
php code
Code:
$sql8 = "SELECT * FROM job";
elseif ($keyword== ""&&$jobCategory==""&&$jobLocation=="") {
$data = mysql_query($sql8)
or die("Cannot execute query");
}
<option selected>ALL</option>
it cannot function, so, can anyone give me some guildeline... Thanks..
Comment