Hi!
2 Q: 1. I want to replace " with space. What is wrong with this: eregi_replace ( """, "", $string);
Thanks! Bye
Q1. You need an escape
eregi_replace ( "\"", "", $string);
Q2. You need to strip slashes (if I undestand the question).
$url = "<a href=\"bla.bla.html\">"; $url=stripslashes("$url");
PRINT"$url";
-Chris