Вопрос

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