I would like to pass values in anchoring.
Keeping it visible I can use <a href=xyz.php?ID=123&action=delete>
In above I would like action=delete to be hidden. What to do?
I cannot use input type=hidden as I'm not submitting the form.instead requires onclick by clicking on reference page in anchoring and passing the hidden values in URL.
Can't I use <a href="xyz.php?ID=123&<?php <input type=hidden name='action' value='delete'>">