|
Well, php is a server issue so it seems that addslashes would be affecting any kind of browser. Can you give a more detailed example. Show us the HTML not the screen output.
Remember, you only need to use addslashes before putting something into a database (or a comparable quoting situation). Adding slashes in such cases does not actually 'add slashes' - it simply prevents an error. So
'My name is o'reilly' ---> error. Hence we use
'My name is o\'reilly' ---> no error, and in the database is My name is o'reilly.
Incidently, this is why we don't need to remove the slashes later, because we didn't really add any. It was just a temporary measure.
|