Once I have several submit buttons that send post data:
<form name="Master" form action="Master.php" method="post">
<table width="800" border="0">
<tr>
<td><input name="Master" type="submit" value="Test1"/></td>
<td><input name="Master" type="submit" value="Test2"/></td>
</tr>
</table>
</form>
Now I change my mind, and want to use drop down menus:
<ul class="menu" id="menu">
<li ><a href="" class="menulink">Home</a>
<li ><a href="" class="menulink">Main1</a>
<ul>
<li><a href="" class="sub">Test1</a>
<li><a href="" class="sub">Test2</a>
</ul>
</li>
</ul>
CSS code (menu, menulink, sub, etc) properly displays this menus.
But I dont want to chage substantially the php file that handles the original post values.
So my question is:
Can I send use "method post" inside this dropdown menu? How?
Thanxs.
GETrequest via an anchor tag, but POST is not possible :(formattribute in the first HTML example?POSTdata to the server.