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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.