当我有以下内容时:
<?php
$temp= file_get_contents('./inc/announcement.html');
require_once(FACULTY180_CLASS_ROOT.'TinyMCEMaker.php');
$richtext = new TinyMCEMaker('basic');
$richtext->editor('Description', $temp);
?>
我将有一个富文本编辑器。 我也知道,如果我有一个像
这样的表格<?php
// updating teh html file with new announcement
if($_POST['formSubmit'] == "Submit")
{
$varMovie = $_POST['formMovie'];
file_put_contents("./inc/announcement.html",$varMovie);
}
?>
<form action="Home.php" method="post" id="announcement">
<?php
$temp= file_get_contents('./inc/announcement.html');
require_once(FACULTY180_CLASS_ROOT.'TinyMCEMaker.php');
$richtext = new TinyMCEMaker('basic');
$richtext->editor('Description', $temp);
?>
<input type="text" name="formMovie" id="Test" >
<input type="submit" name="formSubmit" value="Submit">
</form>
单击提交按钮时,可以使用&#34; forMovie&#34;获取输入字段内的值。由$ _POST命名。
所以现在不知道在输入字段中发送值,我想在富文本编辑器中发送值,然后通过$ _POST获取它。
我也知道我通过
获取了富文本编辑器中的值 tinyMCE.activeEditor.getContent();
但我怎么发送呢?因为当我在输入字段中发送值时,我在$ _POST [&#34;输入字段的名称&#34;]中使用了输入字段的名称。但它对我的富文本编辑器有什么作用?