Re: Removing Bad Characters from Database

2001-05-09 Thread Paul DuBois
At 1:45 PM -0400 5/9/01, <[EMAIL PROTECTED]> wrote: >I was wondering if anyone knows of a way i can strip bad characters out >of a mysql database field namely the < > charators. These charactors are >causing havok for >me when I try and post data to the web. Thanks Alot. Why not just encode your

RE: Removing Bad Characters from Database

2001-05-09 Thread joe
ET field = REPLACE(field,'<',''); > >- Original Message - >From: <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Wednesday, May 09, 2001 10:45 AM >Subject: Removing Bad Characters from Database > > > > I wa

Re: Removing Bad Characters from Database

2001-05-09 Thread A. Chris Nichols
ET field = REPLACE(field,'<',''); > >- Original Message - >From: <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Wednesday, May 09, 2001 10:45 AM >Subject: Removing Bad Characters from Database > > > > I wa

Re: Removing Bad Characters from Database

2001-05-09 Thread Eric Fitzgerald
d,'<',''); - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 09, 2001 10:45 AM Subject: Removing Bad Characters from Database > I was wondering if anyone knows of a way i can strip bad characters out > of a mysql d

Removing Bad Characters from Database

2001-05-09 Thread joe
I was wondering if anyone knows of a way i can strip bad characters out of a mysql database field namely the < > charators. These charactors are causing havok for me when I try and post data to the web. Thanks Alot. - Before po