Hey
Does anyone knows how do I replace a " (double quote) in a string with nothing
I tried the following but does not work
$message = str_replace(""","",$_REQUEST['txtMessage']);
or
$message = str_replace("""","",$_REQUEST['txtMessage']);
or
$message = str_replace("\"","",$_REQUEST['txtMessage']);
Plz help
Thanx