Erik,

> function get_current_page_name()
> {
> $current_page_name = explode("/", $_SERVER['PHP_SELF']);
> $current_page_name = $current_page_name[-1];
> return $current_page_name ;
> }
> 
> $errorcode = get_current_page_name();
> echo $errorcode;
> 
> The only thing that works is $errorcode = 
> basename($_SERVER['PHP_SELF']), but that's not the point -- I still 
> don't understand why the function above doesn't return anything.  In 
> this case, I'm positive that I've specified the last element of the 
> array.  (Haven't I?)


Some extra debug echo statements will (dis)prove this...
=dn



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to