I have created a php file which has the following piece of code. The form calls the process-simple-search.php file to process the keyword entered by the user. I am using MAMP and the files are stored as expected in the MAMP folder. The click of the button however doesn't do anything, I have tried everything but no results...do you have any suggestion?
<form method="GET" action="process-simple-search.php">
<fieldset id="general-search">
<label>Please insert the desired keyword:</label>
<div id="components">
<select name="items">
<option value="dogs">Dogs</option>
<option value="cats">Cats</option>
<option value="rhinos">Rhinos</option>
</select>
<input id="textfield" type="text" name="text" value="" size="42"></input>
<input id="button" type="button" name="button" value="Search"></input>
</div>
</fieldset>
</form>