I have long list of products and in each product i have form:
<form action="index.php" method="post">
<input type="hidden" name="prodid" value="<?= $id ?>" />
...
</form>
I want to jump to product on call action like:
<a href="#prodid<?= $id ?>">jump to product</a>
...
<a name="prodid<?= $id ?>"></a>
but i must use post method. In get method I would use this:
<form action="index.php#prodid<?= $id ?>" method="get">
...
</form>
How to do it?