escaping # signs in image file names

2007-11-30 Thread Crow T. Robot
Is there a way to do this that anyone can think of? I have a page that I inherited that is outputting user-uploaded images, and just today, the user decided to upload images with #'s in the names. The images are not showing up because of this. Any way around this other than renaming the images?

RE: escaping # signs in image file names

2007-11-30 Thread Dave Watts
Is there a way to do this that anyone can think of? I have a page that I inherited that is outputting user-uploaded images, and just today, the user decided to upload images with #'s in the names. The images are not showing up because of this. Any way around this other than renaming

Re: escaping # signs in image file names

2007-11-30 Thread Charlie Griefer
img src=/_images/#replace(filename, '##', '###', 'all')# width=164 height=140 border=0 / ? (might need 4 # there in the 3rd arg) On Nov 30, 2007 8:54 AM, Crow T. Robot [EMAIL PROTECTED] wrote: Is there a way to do this that anyone can think of? I have a page that I inherited that is

Re: escaping # signs in image file names

2007-11-30 Thread Jerry Johnson
Maybe replace the # with %23? On Nov 30, 2007 12:22 PM, Charlie Griefer [EMAIL PROTECTED] wrote: img src=/_images/#replace(filename, '##', '###', 'all')# width=164 height=140 border=0 / ? (might need 4 # there in the 3rd arg) On Nov 30, 2007 8:54 AM, Crow T. Robot [EMAIL PROTECTED]

Re: escaping # signs in image file names

2007-11-30 Thread Crow T. Robot
there's your answer folks. thanks jerry. On Nov 30, 2007 11:55 AM, Jerry Johnson [EMAIL PROTECTED] wrote: Maybe replace the # with %23? On Nov 30, 2007 12:22 PM, Charlie Griefer [EMAIL PROTECTED] wrote: img src=/_images/#replace(filename, '##', '###', 'all')# width=164 height=140