문제

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