hi. i've got this problem:
in my php script i need to get a param passed with the url.
i use this: $string=$_REQUEST['param name'];
it works, but my problem is that in cases linke this:
page.php?param="aaa&g=bbbb"
i want to get the full param while the code above takes just the param until the first "&".
can you help me?