Re: [PHP] getting text with strange encodng

2005-03-21 Thread Richard Lynch
On Fri, March 18, 2005 5:40 am, Diana Castillo said: no, its not html entity, it doesnt have a semicolon, its exactly as I But some versions of Microsoft IE will display reg without the semi-colon as an HTML-entity, in complete violation of HTML specifications. Yes, really. So some idiot may

Re: [PHP] getting text with strange encodng

2005-03-18 Thread Diana Castillo
no, its not html entity, it doesnt have a semicolon, its exactly as I wrote it. Chris Shiflett [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Diana Castillo wrote: Does anyone know what kind of string encoding this is : regreg mAreg and how can I decode this? That looks almost

[PHP] getting text with strange encodng

2005-03-17 Thread Diana Castillo
Does anyone know what kind of string encoding this is : regreg mAreg and how can I decode this? -- Diana Castillo Global Reservas, S.L. C/Granvia 22 dcdo 4-dcha 28013 Madrid-Spain Tel : 00-34-913604039 Ext 216 Fax : 00-34-915228673 email: [EMAIL PROTECTED] Web : http://www.hotelkey.com

Re: [PHP] getting text with strange encodng

2005-03-17 Thread Chris Shiflett
Diana Castillo wrote: Does anyone know what kind of string encoding this is : regreg mAreg and how can I decode this? That looks almost like an HTML entity: reg; Assuming that's what it is, and you just left off the semicolon, you can decode it with this: html_entity_decode() Hope that helps.