RE: [PHP] strtr question

2003-05-29 Thread Joe Stump
You could do this a number of ways: eregi(), ereg() or str_replace() ... ? $string = What's up?; $string = str_replace(','',$string); echo $string.\n; ? That will output Whats up? --Joe -- Joe Stump [EMAIL PROTECTED] http://www.joestump.net Label makers are proof God wants Sys Admins

RE: [PHP] strtr question

2003-05-29 Thread Joe Stump
Admins to be happy. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 7:49 AM To: Joe Stump Subject: RE: [PHP] strtr question Yes this would be great only I'm not substituting a single character found in a filename but a host of characters

Re: [PHP] strtr question

2003-05-29 Thread Mike Morton
Ed: Better yet, because not all browsers pass through the original file name that was was uploaded, have the user input the name - and validate that instead. You can then restrict them to numbers letters: $filename=ereg_replace([^0-9a-zA-Z.],,$filename) Or something like that. On 5/28/03

Re: [PHP] strtr question

2003-05-29 Thread CPT John W. Holmes
I want to remove unwanted characters from filenames of files uploaded to our server. I am currently using strtr to do this. I have a few characters that are being removed but I would also like a single quote to be removed if it is in the filename. I think it has to be escaped in the command