Is it possible to get whole url with everything that is after ? for example:
index.php?op=topic&id=1
how to get it... I can only get page but without variables passed with url 🙁(
THX a lot
What you are looking for is $HTTP_SERVER_VARS["REQUEST_URI"]. That is everything that was requested, including directories. $HTTP_SERVER_VARS["QUERY_STRING"] is everything after the ? in your request.