Re: PHP POSTing with quotes
just replace / with blank space bcoz " can't be entered in a string as string is any thing enclosed in quotes...So it converts it in escape sequence ... if u want it not to include / then u need to replace it.
Re: PHP POSTing with quotes
If it's \" then you must have magic quotes on. Use stripslashes() to remove backslashes from quotes.
Re: PHP POSTing with quotes
I didnt think of that. I thought i had to go through php.ini or something. I used this:
PHP Code:
<?php
$text=$_POST['txt'];
$text=str_replace('\"',""",$text);
?>
Thanks, dandono.