X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_samples%2Fphp%2Freplace.php;h=dbedd3c73adefbe5fc062d450a2c04150b005634;hb=3fe9cac293e090ea459a3ee10d78cbe9e1dd0e03;hp=80d813bda8e1f50a68aeb81a7fcf45dcd3ea0fb9;hpb=941b0a9ba4e673e292510d80a5a86806994b8ea6;p=ckeditor.git diff --git a/_samples/php/replace.php b/_samples/php/replace.php index 80d813b..dbedd3c 100644 --- a/_samples/php/replace.php +++ b/_samples/php/replace.php @@ -1,18 +1,46 @@ - Sample - CKEditor + Replace Selected Textarea Elements — CKEditor Sample -

- CKEditor Sample +

+ CKEditor Sample — Replace Selected Textarea Elements Using PHP Code

+
+

+ This sample shows how to replace a selected <textarea> element + with a CKEditor instance by using PHP code. +

+

+ To replace a <textarea> element, place the following call at any point + after the <textarea> element: +

+
+<?php
+// Include the CKEditor class.
+include_once "ckeditor/ckeditor.php";
+
+// Create a class instance.
+$CKEditor = new CKEditor();
+
+// Path to the CKEditor directory.
+$CKEditor->basePath = '/ckeditor/';
+
+// Replace a textarea element with an id (or name) of "textarea_id".
+$CKEditor->replace("textarea_id");
+?>
+

+ Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

+
- -
- Output -
-

-
- -

-

- -

-
-
+
+

+ + +

+

+ +

+
basePath = '/ckeditor/' // If not set, CKEditor will try to detect the correct path. $CKEditor->basePath = '../../'; - // Replace textarea with id (or name) "editor1". + // Replace a textarea element with an id (or name) of "editor1". $CKEditor->replace("editor1"); ?>