Is there a way to detect a click on a HTML button in PHP, or do I really need to put a form tag around the element and make it an input submit button.
<button name="btnBottom" type="button"></button>
OR
<form method="post" action="#">
<input type="submit" name="btnBottom" />
</form>
Thanks in advance.