You are here: C97net • 5.07 Editor Functions
Display a WYSIWYG editor
function rte_area ($id, $text = '', $width = 400, $height = 350, $pagebreak = false)
Use this function to display a WYSIWYG editor area.
$id = name of the WYSIWYG form field.
$text = default text (optional).
$width = width of the area (default 400).
$height = height of the area (default 350).
$pagebreak = set to true to display a page break button, false to hide it (default false).
A page break is a hidden tag insertted in the page, <!-- pagebreak -->
This function needs editor skin in /skins/_common/editor.tpl; and of course TinyMCE in /etc/js folder.
Example 1
<?php
require './includes/user_init.php';
echo rte_area ('details');
?>
There is no comment. Why not be the first?