I have an input tag textbox which has a value and I want that value to be passed from one page to another using a href tag. Is this possible?
Here's my HTML code
<input type="text" placeholder="Place given Access Key" id="accesskeynum" name="accesskeynum" value="accesskeynum">
and here's my code to pass it to another page using php
but when I echo the value in page 2 it returns blank even though I put 1234 in the text field
<a href="immobilization_actions.php?action=immobilizerx&id=<?php echo $_POST['accesskeynum'] ?>" style="margin-right:50px;"><img src='style/Immobilize.png' height="75" width="75" onmouseover="this.src='style/Immobilize.png';" onmouseout="this.src='style/Immobilize.png';" /></a>
Please help me. Thanks in advance for all the help.
hrefattribute, f.e. as a query string parameter.