Basically, I think that I can't, but would be very happy to be proven wrong.
I am generating an HTML menu dynamically in PHP, adding one item for each current user, so that I get something like <a href="process_user.php?user=<user>>, but I have a preference for POST over GET.
Is there any way to pass the info as a POST parameter, rather than GET from a clickable HREF link?
Update: sorry, I am not allowed to use JS - I shoulda said, my bad
Update to the update: it looks like @Rob is on to somethign with "You could use a button instead of an anchor and just style the button to look like a link. That way you could have your values in hidden fields inside the same form to be sent via POST"