i wanted to input a id value into a tag, where the value is hidden but i want to pass that value to another page . I have the code for input type however i have no idea how to do it on a tag.
codes for input type:
<input type='hidden' name='id' value='$id'/>
<input type='submit' value='More details' />
how to archieve the same effect on tag?
There’s no way to pass information in a link (an
<a>tag) besides putting it in the URL.