-
<html>
-
<head>
-
<script src=
"../jquery.min.js"></script>
-
<script src=
"../tinymce/jscripts/tiny_mce/jquery.tinymce.js"></script>
-
-
<script src=
"../tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
-
<script>
-
$
(document
).
ready
(
function
(
)
{
-
$
(
'textarea.rte'
).
each
(
function
(
)
{
-
TINYMCE.
replace
(
this.
name
);
-
}
);
-
}
);
-
</script>
-
</head>
-
<body>
-
<form action=
"page2.php" method=
"post">
-
<table width=
"100%">
-
<tr>
-
<th style=
"width:120px">Page Text</th>
-
<td>
-
<textarea
class=
"rte" style=
"width:100%;height:200px;"
name=
"body"></textarea>
-
</td>
-
</tr>
-
<tr><th colspan=
"2"><input type=
"submit"
/></th></tr>
-
</table>
-
</form>
-
</body>
-
</html>