Hello all,
I have a form, I collect the data, data is then being sent to an intermediate page and form data is kept inside hidden html tags.
Data is then sent to a Domino parser, problem is that whenever there are quotation marks "", the final output becomes a slash \.
Is this my fault, or is this a Domino issue? Do I have to htmlencode this field that contains a \ whenever there are quotation marks?
UPDATE: Ok, I used htmlspecialchars(), and it works a little better now. Before, all text ended at the slash. But now, text still continues, I see the quotation marks now, however... there are still slashes. So it's like: hello, my name is /"mk/". How do I get rid of these damn slashes?
$desc = htmlentities($description); and I also tried with ENT_Quotes
Please let me know, if so, a snippet of code would be apreciated!
Thanks
MK