I have the problem that when I write something like the following in the CKEditor
I get the following HTML code
How can I prevent that this closing tag is inserted automatically because I simply don't need it.
Regards
CREATE PROCEDURE <procname> TEST INTEGER
I get the following HTML code
CREATE PROCEDURE <procname> TEST INTEGER</procname>
How can I prevent that this closing tag is inserted automatically because I simply don't need it.
Regards

Re: Problem with autocompletion
Re: Problem with autocompletion
Regards
Re: Problem with autocompletion
Re: Problem with autocompletion
http://test.freggeln.com/test.php
<head> <title> Test for CKEditor </title> <script type="text/javascript" src="/ckeditor/ckeditor.js"></script> </head> <body> <?php $vstrFileContent = ""; $vstrShowTitle = ""; if ($_POST['content'] == "") { $vstrFileContent = ""; } else { $vstrFileContent = $_POST['content']; } if ($_POST['showtitle'] == "") { $vstrShowTitle = ""; } else { $vstrShowTitle = $_POST['showtitle']; } FileForm('edit', 'test', $vstrFileContent, $vstrShowTitle); ?> </body> </html> <?php function FileForm($action, $file="", $value="", $title="") { echo "<form action=\"test.php\" method=\"post\">\n"; echo "<input type=\"hidden\" name=\"filename\" value=\"".$file."\">"; echo "ShowTitle: <input type=\"text\" name=\"showtitle\" size=\"40\" length=\"255\" value=\"".$title."\">"; echo "<script type=\"text/javascript\"> window.onload = function() { CKEDITOR.replace( 'content' ); }; </script>"; echo "<textarea name=\"content\" cols=100 rows=30>".$value."</textarea><br /> <input type=\"submit\" name=\"formaction\" value=\"Speichern\" /> </form>"; } ?>Re: Problem with autocompletion
Why don't you use the PHP API?
Re: Problem with autocompletion
Thanks a lot.
Regards