When I enter quotes in a form and have that data showed in an echo it puts the quotes like this, \"Text Here\". How do I remove the \ from the quotes so it just says "Text Here"?
Code #1
<form action="index2.php" method="post">
Enter Your Name: <br>
<input type="text" name="name" placeholder="Enter Your Name Here"><br>
Enter Custom Quote: <br>
<input type="text" name="quote" placeholder="Exe; "I had a dream" "><br>
<input type="submit" value="Send">
</form>
Code #2
<html>
<head>
</head>
<body>
Thank you for sending us your quote <?php echo $_POST["name"]; ?>.
You quote was <?php echo $_POST["quote"]; ?>
</body>