X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/blobdiff_plain/871bad8291b6dbc29d489d95d185458caab25158..14d450d78a2d67ec1decd64c928151851961dd36:/_samples/php/replaceall.php?ds=inline diff --git a/_samples/php/replaceall.php b/_samples/php/replaceall.php deleted file mode 100644 index 4415fbd..0000000 --- a/_samples/php/replaceall.php +++ /dev/null @@ -1,88 +0,0 @@ - - - -
-
- This sample shows how to replace all <textarea> elements
- with CKEditor by using PHP code.
-
- To replace all <textarea> elements, place the following call at any point
- after the last <textarea> element:
-
-<?php
-// Include the CKEditor class.
-include("ckeditor/ckeditor.php");
-
-// Create a class instance.
-$CKEditor = new CKEditor();
-
-// Path to the CKEditor directory.
-$CKEditor->basePath = '/ckeditor/';
-
-// Replace all textarea elements with CKEditor.
-$CKEditor->replaceAll();
-?>
-