Jump to content

Post Submit Quotes Help!


Recommended Posts

i have a simple form and i want it to be so that upon submission, it not only displays what the user submitted below, but it keeps what the user submitted inside the text fields. so far it has worked!

 

<form action="" method="post">
<textarea rows="9" cols="45" name="text"><?php echo $_POST['text']; ?></textarea>
<input type="text" name="name" style="width:600px;" value="<?php echo $_POST['name']; ?>"/>
<br />
<input type="submit" name="submit" value="Submit"/>
</form>

 

<?php
if (isset($_POST['submit'])) {
echo $_POST['name']."<br>";
echo $_POST['text'];
}
?>

 

again: so far this works.

 

but when i have quotes " or ' in the text, it replaces it with \" or \'  how do i make it Not do that?

Link to comment
https://forums.phpfreaks.com/topic/44682-post-submit-quotes-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.