My $GET parameter could be url with another paramenters (mysite.co/index.php?q=anothersite.co?id=2) and i need to ignore them.

But im getting lost them (mysite.co/index.php?q=anothersite.co) after going to the url.

How i can fix it? Without decoding url.

有帮助吗?

解决方案

you have to use & instead of another ?

this should work

mysite.co/index.php?q=anothersite.co&id=2

EDIT:

$encoded = encode("http://anothersite.co?id=2");

and then

mysite.co/index.php?q=$encode
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top