Is there something that can get the current URL is located at?
So if someone took the link
http://www.this.com/that.php
it would return that?
Not sure what it is you're actually asking for, but Predefined Variables like that are usually to be found in the $_SERVER[] array.
Errr.. I dont really want my server information... I have URLs in other peoples site like this...
http://www.this.com/that.php?id=2
is there a way I can pass their current URL to it without having to add anything to the URL I posted?
Are you looking for what page lead them to your page?
If so, use $_SERVER['HTTP_REFERER']
or $HTTP_SERVER_VARS['HTTP_REFERER'] on an older version of PHP
not sure what u want, but ... print($PHP_SELF); prints the current URL........