hi there
i was wondering if you could place your current url into a variable
so for example:
say i was on this page
www.mysite.com/info
could i make this into a variable
eg:
$current_url = ???????
many thanks
simon
$current_url = $SERVER['HTTP_HOST'].$SERVER['PHP_SELF']; With this you refer to the script that is executed.