I'm not using addslashes() at all, but when I save some string variablein session and retrieve them in another page, typically
- "to'to"
will become
- "to\'to"
that's why I thought that an "addslashes()" was embedded in the serialisation that occurs when you register a variable in a session.
- session_register("session_message");
To retrieve my initial data i need to use stripslash().
Untill now it works with my datatest, but I'm not sure it is the good was