寻找有关如何创建简单文本编辑器的教程?

时间:2011-04-14 08:16:20

标签: php mysql text-editor

我正在寻找有关如何创建简单文本编辑器的教程。我在我的网站上使用PHP,MySQL和Jquery?

3 个答案:

答案 0 :(得分:4)

一个简单的文本编辑器

<?
if ($_POST) {
  file_put_contents("file.txt",$_POST['text']);
  header ("Location: ".$_SERVER['PHP_SELF']);
  exit;
}
$text = htmlspecialchars(file_get_contents("file.txt"));
?>
<form method="POST">
<textarea name="text"><?=$text?></textarea>
<input type="submit">
</form>

答案 1 :(得分:1)

为什么不使用http://ckeditor.com或许多其他现有编辑器。重新发明轮子是愚蠢的

答案 2 :(得分:0)

我不会把它称为教程,但我认为Mozilla的Midasdemo是一个很好的入门。

规格:http://www.mozilla.org/editor/midas-spec.html
演示:http://www.mozilla.org/editor/midasdemo/