Hi all
<?php echo "<form action='repaly_text.php' method='post'>"; echo "<input type='hidden' name='topic_text' value='$Replay_Text'>"; echo "<input type='submit' value='opla' >"; echo "</form>"; ?>
I can't $_POST['topic_text'] backslashs 🙁 . HELP 🙂
Thanks advance .
try this:
<?php if(isset($_POST["topic_text"])) print stripslashes($_POST["topic_text"]); ?> <?php $Replay_Text='topic \ with lots of text'; echo "<form action='?' method='post'>"; echo "<input type='hidden' name='topic_text' value='$Replay_Text'>"; echo "<input type='submit' value='opla' >"; echo "</form>"; ?>
ah, the problem is solved but , I got another one with '' \ quotes 🙁
ah nevermind I will solve that on some other way .