I'm trying to do a redirect in Perl and pass on some data. Right now i'm using print LOCATION, appending the url (url?tag=data). Of course, i don't like users to see what's being passed and would rather do this with POST. please note, i need to forward to the client, so LWP::Agent wouldn't be an option, i think. also, i know could print a self-submitting javascript page with hidden form data, but this is not an option since i have to write javascript-independent. I'm looking for a way to do this in perl. Thanks.