您好我的网站上有一个像textarea一样的iframe。
<form action="my_parse_file.php" name="myform" id="myform" method="post">
<p><input name="title" placeholder="title" id="title" type="text" size="80" maxlength="80"/></p>
<iframe id="textEditor" name="textEditor" style="width: 50%; height: 300px;" scrolling="no">
</iframe>
<input name="myBtn" type="submit" value="Post">
</form>
</body>
</html>
我想知道是否可以使用php将数据发布到另一个页面?我试过发布它就像我普通的textarea:
<?php
echo . $_POST['title'] . . stripslashes($_POST['textEditor']);
?>
也许很明显,没有成功。非常感谢任何见解,谢谢!