how can I pass GET url which contains character "?" to php file.
for example I have url:
http://www.mysite.com/file1.php?string=file2.php?a1=1&a2=2&a3=3
I want to pass all string "file2.php?a1=1&a2=2&a3=3" into file1.php
now on file1.php, if I use
$v=$_REQUEST;
echo "$v";
I only get
file2.php?a1=1
it lost rest "a2=2&a3=3"
how can I fix this issue?
Any idea?