not exactly sure if what you want is to extract the username or if its the
html file at the end  but here goes..

To extract the html file you could use

basename()
ex:
$file = basename("http://www.mydomain.com/member.php/randy/test.html";);
echo $file; // outputs test.html

if you want the username you can either do what Matt Williams suggested
or use substr and strrpos to extract it.

<[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello,
>
>
> Anybody have any suggestions on how i could get the test.html from the
following:
>
>
>
> http://www.mydomain.com/member.php/randy/test.html
>
>
>
> Here is the part that I am having trouble with:
>
>
> the randy is not a directory it is a member name so it can change
>
> ie bill,  car, jack, moneypower   etc...
>
> example
>
> http://www.mydomain.com/member.php/moneypower/test.html
>
>
> I have experimented with the php variables that come in , but the only way
I could figure out to get test.html out of there is If I captured the
$PATH_INFO AND did a str_replace  on all the html filenames on that site and
did another one to get rid of the /  .  then I would have the member name
and then i could do a string replace on the member name from the path info,
which works , for now but as I get more files etc, it's gonna be a pain in
the butt,  there has to be a better way to do it.
>
> Any suggestions?
>
>
> Randy
>
>
>
>



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

Reply via email to