is there a php code that will tell me the address of current page.
for ecample the user is on index.php so I would want $current_page to = index.php
thanks.
$_SERVER['PHP_SELF']
thanks
or
$_SERVER['SCRIPT_NAME'];
GM