I have URLs like this:
process_request.php?fileName=newpage.html
I attempt to retrieve the fileName
parameter with:
if (isset($_REQUEST['fileName'])) { ... }
It's not working and I'm wondering if the period in the file name could be the problem. I can't seem to find a definitive answer. PHP's URL encoding functions don't appear to do anything to periods.