How do I get the name of the current page?
example 1:
www.technowax.net/hosted/fred_dynage.php
need the script to return;
fred_dynage.php
example 2:
www.technowax.net/forums.php
forums.php code:
welcome to the forums<br><br>
<? php include("posting_functions.php"); ?>
need the script to return:
forums.php
if the request for the currnet page name is made within posting_functions.php. The script must return forums.php as the page name.
Hope this all makes sense.