[email protected] Posted March 28, 2007 Share Posted March 28, 2007 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 More sharing options...
papaface Posted March 28, 2007 Share Posted March 28, 2007 <?php if (isset($_POST['submit'])) { echo stripslashes($_POST['name'])."<br>"; echo stripslashes($_POST['text']); } ?> Link to comment https://forums.phpfreaks.com/topic/44682-post-submit-quotes-help/#findComment-216989 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.