I would like to parse the URLs in the values after the domain name.  

The URLs are the results of mod re-write statements.  

Example 1:

http://www.domain.com/page/file/

The desired results would be: 
$web_page_access[1] = "file"

Example 2:

http://www.domain.com/page/file/2/ 

The desired results would be:
$web_page_access[1] = "file"
$web_page_access[2] = "2"

Any help please?

Ron


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

Reply via email to