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

[PHP-DB] Help in tokenizing a string

2002-01-31 Thread George Lioumis
Good day to all. I tried the following code from PHP's manual if (isset($submit)) { if ($submit == "Save") { echo "$im_file"; $tok = strtok($im_file, "\\"); while ($tok) { echo "$tok"; $tok = strtok ("\\"); } } } I have the string $im_file ="C:image.jpg" and I want to