您好,我的网站上有一个 iframe,其作用类似于 textarea。
<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 将数据从它发布到另一个页面?我试过像普通的文本区域一样发布它:
<?php
echo . $_POST['title'] . . stripslashes($_POST['textEditor']);
?>
也许很明显,没有成功。任何见解将不胜感激,谢谢!