(html) wysiwyg editor for TEXT fields in phpmyadmin

I am building a small website, and I need someone who takes over to add some content stored in three tables, which according to sep '13 will have no more than 500 entries (small things). I'm using phpmyadmin right now, but adding text (one of the tables is a mini blog) requires some basic html skills, which I’m sure “whoever takes” does not have. did you know, alternatively:

a) a way to integrate the wysiwyg editor with phpmyadmin (at least for TEXT fields)

b) an essential mysql interface that supports editing tables (only content, not structure) - into which I could embed the editor myself?

edit : thanks for the editor’s suggestions, but this is a secondary problem: at the moment I need a way to embed any such editor in phpmyadmin (otherwise I would have to write the interface myself) ...

0
source share
4 answers

I think the CK editor is what you are looking for, you can see it here: http://ckeditor.com/

+1
source

Here is the solution for you, I have to say that this is completely wrong, but if you really need it, then here is the way:

Get TinyMCE from here:

http://www.tinymce.com/

Extract the package to the phpmyadmin folder, for example, in my case I put the main content here:, D:\Program Files\Wamp\apps\phpmyadmin\tiny_mceso the file tiny_mce.jsis on this patchD:\Program Files\Wamp\apps\phpmyadmin\tiny_mce\tiny_mce.js

tbl_change.php phpmyadmin <?php:

echo '<script type="text/javascript" language="javascript" src="tiny_mce/tiny_mce.js"></script>'
.'<script language="javascript" type="text/javascript">'
.'tinyMCE.init({'
.'theme : "advanced",'
.'mode : "textareas",'
.'language : "en"'
.'});'
.'</script>';

TinyMCE phpmyadmin, , , phpmyadmin iframe, .

, , , .

+1

jHtmlArea, jQuery, , : http://jhtmlarea.codeplex.com/

. phpMyAdmin " ". back-end PHP script, .

In the background, I also use an HTML cleaner to clean HTML and Tidy HTML to undo it.

0
source

It is also useful TinyMCE "www.tinymce.com", this WYSIWYG is displayed in wordpress

0
source

All Articles