Can any body help for the following simple issue
I have a select box as following
I need php code to check the the selected one is MaleCode:<select name="gender">
<option value="0"> Select </option>
<option value="1"> Male </option>
<option value="2"> Female </option>
</select>
It should be like
Code:if (selected one is Male) {
echo "print";
}
