X-Git-Url: https://scm.cri.minesparis.psl.eu/git/ckeditor.git/blobdiff_plain/871bad8291b6dbc29d489d95d185458caab25158..14d450d78a2d67ec1decd64c928151851961dd36:/_samples/php/standalone.php diff --git a/_samples/php/standalone.php b/_samples/php/standalone.php deleted file mode 100644 index cb8d2de..0000000 --- a/_samples/php/standalone.php +++ /dev/null @@ -1,83 +0,0 @@ - - - -
-- This sample shows how to create a CKEditor instance with PHP. -
--<?php -include_once "ckeditor/ckeditor.php"; - -// Create a class instance. -$CKEditor = new CKEditor(); - -// Path to the CKEditor directory. -$CKEditor->basePath = '/ckeditor/'; - -// Create a textarea element and attach CKEditor to it. -$CKEditor->editor("textarea_id", "This is some sample text"); -?>-
- Note that textarea_id
in the code above is the id
and name
attribute of
- the <textarea>
element that will be created.
-