PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<form id="Status" name="Status" method="post" action="">
<select name="status" >
<option value="0" selected="selected">SELECT!</option>
<option value="1">one</option>
<option value="2">two</option>
<option value="3">three</option>
</select>
</form>
and i want to made an if statement using the value of the dropdown menu
if(isset($_REQUEST["Submit"]) == true) && ($_REQUEST["value"]) == 1)
{
i try the code like that and it isnt working ....