Hi!
I would just like to know if its possible to give an linked image the ability to send the form instead of a submit button? Like in the example below:
<form method="post" action="Search.php">
<table id="search">
<tr>
<td>
Search: <input type="text" name="search" id="search" placeholder="Search for friends"/><td><a href="Search.php" action="Search.php"><img src="graphics/search.png" id="search_pic"/></a></td>
<input type="submit" id="submit"/>
</td>
</tr>
<table>
</form>
Because I don't want a submit button. I want to use the picture to send the forms data instead of the actual submit button.