Forum Moderators: coopster
How would I check the URL of the page I am on after the last slash... I just want to go to www.mydomain.com/contact.php and be told "you are at contact.php" through a PHP variable.
Thanks,
W.
print basename [php.net]($_SERVER['PHP_SELF']);
Just what I needed =)