Can i fetch only short part of url whit $_SERVER["QUERY_STRING"] thing?
example my url is
http://www.mysite.com/index.php?id=7&case=254&mode=autorun
i need to get only this part of that url somehow:
http://www.mysite.com/index.php?id=7
could it be done whit QUERY_STRING thing or somehow else?
in my script i got this:
$juuri = $_SERVER["HTTP_HOST"].$_SERVER["PHP_SELF"];
that fetch only this
http://www.mysite.com/index.php
Okey, thanks for all help!
