Hi all
Last chance saloon.
I have a script running on 2 different servers which consists of the following PHP code:
<?php
echo $_GET['crypt'];
?>
Simple and straight forward yes? When I run this on one of my hosting company servers as such:
myscript.php?crypt=1234=
I see the '1234=' displayed in the browser as you would expect, however on my other server, nothing is displayed in the browser unless i remove the last equal sign from the equation.
Has anyone any idea why this would happen?
I need to be able to pass 'equal signs' as part of an encrypted string along my URL but the server doesnt seem to allow it. It only works if i remove them (which is not an option for me to do)
Any thoughts or opinions would be greatly appreciated.
Doug