JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.1
[ckeditor.git] / _samples / php / standalone.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
2 <!--\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
5 -->\r
6 <html xmlns="http://www.w3.org/1999/xhtml">\r
7 <head>\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
11 </head>\r
12 <body>\r
13         <h1>\r
14                 CKEditor Sample\r
15         </h1>\r
16         <!-- This <div> holds alert messages to be display in the sample page. -->\r
17         <div id="alerts">\r
18                 <noscript>\r
19                         <p>\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
23                         </p>\r
24                 </noscript>\r
25         </div>\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
30                         <p>\r
31                                 <label for="editor1">\r
32                                         Editor 1:</label><br/>\r
33                         </p>\r
34                         <p>\r
35                         <?php\r
36                                 // Include CKEditor class.\r
37                                 include_once "../../ckeditor.php";\r
38                                 // The initial value to be displayed in the editor.\r
39                                 $initialValue = '<p>This is some <strong>sample text</strong>.</p>';\r
40                                 // Create class instance.\r
41                                 $CKEditor = new CKEditor();\r
42                                 // Path to CKEditor directory, ideally instead of relative dir, use an absolute path:\r
43                                 //   $CKEditor->basePath = '/ckeditor/'\r
44                                 // If not set, CKEditor will try to detect the correct path.\r
45                                 $CKEditor->basePath = '../../';\r
46                                 // Create textarea element and attach CKEditor to it.\r
47                                 $CKEditor->editor("editor1", $initialValue);\r
48                         ?>\r
49                                 <input type="submit" value="Submit"/>\r
50                         </p>\r
51                 </form>\r
52         </fieldset>\r
53         <div id="footer">\r
54                 <hr />\r
55                 <p>\r
56                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
57                 </p>\r
58                 <p id="copy">\r
59                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
60                         Knabben. All rights reserved.\r
61                 </p>\r
62         </div>\r
63 </body>\r
64 </html>\r