I made forum at www.vladibo.f2s.com but there is a backslash in each "'" or "$" character. How can I avoid it?
Thank you
I had the ' problem too, but I solve as this:
I used these 2 functions combined:
$string = str_replace ("\","",$string); $string = str_replace ("'","''",$string);
It works.
Luca