I am trying to make a bookmarklet that uses the user\'s current URL, kind of like the tinyURL bookmarklet that uses this javascript code
javascript:void(loca
so what are you wanting, just the url without the query string?
$url = explode('?',$_GET['url']); $url = $url[0];