Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>A Simple Page with CKEditor</title>
- <!-- Make sure the path to CKEditor is correct. -->
- <script src="http://localhost/ECLIPSEPHP/ckeditor/ckeditor.js"></script>
- </head>
- <body>
- <form action="<?php echo $_SERVER['PHP_SELF']?>">
- <textarea name="test" id="test" rows="10" cols="20">
- This is my textarea to be replaced with CKEditor.
- </textarea>
- <input type="submit" name="submitButton" id="submitButton" value="Submit">
- <script>
- // Replace the <textarea id="editor1"> with a CKEditor
- // instance, using default configuration.
- CKEDITOR.replace( 'test' );
- </script>
- <script type="text/javascript" src="http://localhost/ECLIPSEPHP/js/update.js"></script>
- </form>
- </body>
- </html>
- <?php
- var_dump($_POST);
- //echo $_POST['test'];
- ?>
Advertisement
Add Comment
Please, Sign In to add comment