I'm sorry if this info is out there, I swear I've tried looking through dozens of posts, and Google, etc.
Anyway, I'm building a file transfer page, and I'm trying to allow the user to navigate folders that they have permission to, based on a login script.
I am using a "<a href..." to create a link for each file/folder, but in the case of a folder, the script calls itself and sets a "PUT" variable...
For example "<a href = "filelist.php?dir=/upload/user/">folder name</a>"
I just really don't like displaying my folder structure in the URL. I thought of encrypting it with MD5, but I don't know how to decode it so that I can display the selected directory.
So my question is, is there a way to create a link that will set a $_POST variable when it's clicked?
Thanks in advance for any help.