Re: [PHP-DB] Help in tokenizing a string

2002-02-01 Thread George Lioumis
Thanx!! It worked perfectly George - Original Message - From: "David Sullivan" <[EMAIL PROTECTED]> To: "George Lioumis" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, February 01, 2002 11:51 AM Subject: Re: [PHP-DB] Help in tokeniz

Re: [PHP-DB] Help in tokenizing a string

2002-02-01 Thread David Sullivan
I'm not sure why that isn't working, but this might do what you want: $index = strrpos($im_file, "\\"); $im = substr($im_file, $index + 1, strlen($im_file)); I just tested it out here and that works fine, $im = "image.jpg" On February 1, 2002 02:41 am, you wrote: > Good day to all. > > I tried