Php Wysiwyg Editor

  1. Php Wysiwyg Editor Free Download
  2. Php Wysiwyg Editor
  1. Dreamweaver is a WYSIWYG editor and code editor that handles everything you can throw at it including CSS, JSP, XHTML, PHP, JavaScript, and XML development. It is a good choice for professional web designers and developers.
  2. This article answers the (misconceived) questions of whether to use PHP or HTML, and whether there is a WYSIWYG editor for PHP.
Active9 years, 7 months ago

Jun 03, 2009  Best Free Php Editor and Wysiwyg Tools for Every Php Programmer. Add Javascript rich text editing capabilities with our server side php SDK library for the Froala WYSIWYG HTML editor. The 10 Best WYSIWYG HTML Editors. If you want to use the best WYSIWYG HTML editor. ShiftEdit supports PHP, Ruby, Python, Perl, HTML, CSS, and JavaScript.

I am trying to create a WYSIWYG editor in PHP. So far I got this (I'm new btw):

This article answers the (misconceived) questions of whether to use PHP or HTML, and whether there is a WYSIWYG editor for PHP.

HTML:

PHP:

The problem is when I select a new font size from the drop down menu the font size for the entire text area changes, instead I want to be able to highlight a particular word or letter and only have the font size of that change and not of the entire text area. How to go about this?

JonaJona

3 Answers

You can do it (theoretically), but users who have to use it won't be happy with it. The problem is, that every time, a button pressed, the page gets refreshed. That means the content of the form is sent to server, modified there and sent back.

For just e.g. changing the font, the response time is way too long. The user won't work comfortable with this editor.

The way to got is indeed to use a JS WYSIWYG editor that handles all the formatting, etc. at the client side (to which the other answers link to).

Especially what you have asked for, i.e. only changing the highlighted text, is not trivial to solve. You might be able to do this by sending two additional fields that hold the start end the end point of the highlighted text. These would have to be updated via JS.

You cannot achieve this without JS. As already said, the text is modified at the server side. You have no possibility to figure out what the user is doing by just using the text.

Do yourself a favor and don't try to do it. It really is not worth the effort.

Genetica Generale e Molecolare Umana.pdf — PDF document, 10371 kB (10620116 bytes) Biologia applicata esercizio Fisico Biologia applicata - Materiale didattico. Biologia Applicata - Diapositive del modulo di genetica. Biologia Applicata - Programma e libri di testo. Biologia Applicata - Diapositive e video del modulo di biologia. Scaricare Genetica molecolare umana Libri PDF Gratis. Genetica molecolare umana Epub e PDF gratis. Genetica molecolare umana pdf printer. Isacibo.files.wordpress.com Genetica Molecolare Umana Strachan Pdf. Here is The Download Genetica Molecolare Umana pdf, Click Here to Download or Read. Free Ebooks strachan read genetica molecolare umana for download in PDF, MOBI. FreeEbookFinder.com does not upload or store any files on its server. Strumenti della Genetica Molecolare Umana (3).

Felix KlingFelix Kling
589k135 gold badges904 silver badges969 bronze badges

Please adhere to the DRY principle (Don't Repeat Yourself) and take one of the many Javascript WYSIWYG editors like http://tinymce.moxiecode.com/.

Trust me, people have put a lot of work in those and you really don't want to do it yourself.

Bye

aefxxaefxx
19.5k5 gold badges36 silver badges51 bronze badges

Agreed, we use TinyMCE and it's very robust. Check out http://tinymce.moxiecode.com/examples/full.php to see all of the features it has. The footer of the examples page shows a bunch of configurations with fewer buttons for specific purposes.

It definitely takes some patience to get it running the way you desire but in the end it works better than everything else I've seen. The FileManager and ImageManager plugins are not free but they are still open source when you purchase them and work really well.

Php Wysiwyg Editor Free Download

DylanDylan

Php Wysiwyg Editor

Not the answer you're looking for? Browse other questions tagged phpwysiwyg or ask your own question.