1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
\r
3 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
\r
4 For licensing, see LICENSE.html or http://ckeditor.com/license
\r
6 <html xmlns="http://www.w3.org/1999/xhtml">
\r
8 <title>Sample - CKEditor</title>
\r
9 <meta content="text/html; charset=utf-8" http-equiv="content-type"/>
\r
10 <link href="../sample.css" rel="stylesheet" type="text/css"/>
\r
16 <!-- This <div> holds alert messages to be display in the sample page. -->
\r
20 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
\r
21 support, like yours, you should still see the contents (HTML data) and you should
\r
22 be able to edit it normally, without a rich editor interface.
\r
26 <!-- This <fieldset> holds the HTML that you will usually find in your pages. -->
\r
27 <fieldset title="Output">
\r
28 <legend>Output</legend>
\r
29 <form action="../sample_posteddata.php" method="post">
\r
31 <label for="editor1">
\r
32 Editor 1:</label><br/>
\r
33 <textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
\r
36 <input type="submit" value="Submit"/>
\r
43 CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>
\r
46 Copyright © 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico
\r
47 Knabben. All rights reserved.
\r
51 // Include CKEditor class.
\r
52 include_once "../../ckeditor.php";
\r
53 // Create class instance.
\r
54 $CKEditor = new CKEditor();
\r
55 // Path to CKEditor directory, ideally instead of relative dir, use an absolute path:
\r
56 // $CKEditor->basePath = '/ckeditor/'
\r
57 // If not set, CKEditor will try to detect the correct path.
\r
58 $CKEditor->basePath = '../../';
\r
59 // Replace textarea with id (or name) "editor1".
\r
60 $CKEditor->replace("editor1");
\r