How do you echo out current URL in Cake\'s view?
In the request object you have everything you need. To understand it:
debug($this->request->url);
and in your case
$here = $this->request->url;