I am sending below data from textarea:
<?php
for ($x=0; $x<=10; $x++)
{
echo "The number is: $x <br>";
}
?>
But when I get the data from the client on server it becomes like below. It escapes the ++
sign which is special character.
<?php
for ($x=0; $x<=10; $x)
{
echo "The number is: $x <br>";
}
?>
How to get data as it is sent?