JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.1
[ckeditor.git] / _samples / php / replace.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                                 <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
34                         </p>\r
35                         <p>\r
36                                 <input type="submit" value="Submit"/>\r
37                         </p>\r
38                 </form>\r
39         </fieldset>\r
40         <div id="footer">\r
41                 <hr />\r
42                 <p>\r
43                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
44                 </p>\r
45                 <p id="copy">\r
46                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
47                         Knabben. All rights reserved.\r
48                 </p>\r
49         </div>\r
50         <?php\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
61         ?>\r
62 </body>\r
63 </html>\r