RE: [PHP] extracting the file name from the referrer

2006-11-17 Thread John
ed/processed is from the correct page - which was where the referring url came in. Any other suggestions or alternatives for c? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, November 17, 2006 5:41 PM To: John Subject: Re: [PHP] extracting the file

[PHP] extracting the file name from the referrer

2006-11-17 Thread John
I need to extract just the filename from the referring url, stripping it of the path and any post vars on the end. there's got to be an easier way than this eh? $referrer = trim(strrchr(substr($_SERVER['HTTP_REFERER'],0, strpos($_SERVER['HTTP_REFERER'],"?")), "/"), "/") Thanks! -JP