Re: [PHP] Get Current Filename HOWTO

2002-03-28 Thread bvr


note that this var. includes the query string, for example:

/applications.php?cat=browsers

bvr.



Patrick Hartnett wrote:

> It seems I spoke to quick...here is how to get the current file name.
>
> $this_file = $_SERVER['REQUEST_URI'];
> echo( $this_file );
>
> the result is formatted as follows:
>
>   /applications.php
>
>
>
> _
> MSN Photos is the easiest way to share and print your photos: 
> http://photos.msn.com/support/worldwide.aspx
>
>



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




RE: [PHP] Get Current Filename

2002-03-28 Thread Vail, Warren

Try;

$filename = basename($PHP_SELF);

assuming you don't need the full path

Warren Vail
Tools, Metrics & Quality Processes
(415) 667-7814
Pager (877) 774-9891
215 Fremont 02-658


-Original Message-
From: Patrick Hartnett [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 28, 2002 4:53 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Get Current Filename


Trying to build a database which uses the webpage name as one of the 
selection criteria. (building page specific menus).  How do I get the 
current file name?  Can't seem to find any help on this.

-Patrick


_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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

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




[PHP] Get Current Filename HOWTO

2002-03-28 Thread Patrick Hartnett

It seems I spoke to quick...here is how to get the current file name.

$this_file = $_SERVER['REQUEST_URI'];
echo( $this_file );

the result is formatted as follows:

   /applications.php



_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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




[PHP] Get Current Filename

2002-03-28 Thread Patrick Hartnett

Trying to build a database which uses the webpage name as one of the 
selection criteria. (building page specific menus).  How do I get the 
current file name?  Can't seem to find any help on this.

-Patrick


_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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