in my php code
<?=$textfield?>
<form name="form1" method="post" action="">
<input type="text" name="textfield">
<input type="submit" name="Submit" value="Submit">
</form>
when i type "HELLO" (with quotes) in text field and submit the form. it shows the output:
\"HELLO\" not "HELLO"
Why is it doing so and how can I correct this.