Web Features Learning Mode
Consider the following PHP code snippet:
<form method=get>
<select name ="fruits" id="fruits">
<option value="1">Apple</option>
<option>Orange</option>
<option value="3">Strawberry</option>
</select>
<input type="submit" value="Submit">
<?php
echo $_GET['fruits'];
?>
What will be the output if you select 'Orange' from the dropdown menu?
|
|
|
|