Protect your Lenovo Server

How to Add a WYSIWYG Editor in PHP Pages Using TinyMCE and Trumbowyg

A WYSIWYG (What You See Is What You Get) editor makes it easier for users to edit and format content on websites, blogs, or knowledgebase platforms β€” without writing raw HTML. Popular options like TinyMCE and Trumbowyg are free, customizable, and easy to integrate into any PHP-based application.


? 1. Add TinyMCE to a PHP Page

βœ… Step 1: Include TinyMCE via CDN

html
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/6/tinymce.min.js" referrerpolicy="origin"></script>

βœ… Step 2: Add the Textarea and Activate Editor

html
<textarea name="content" id="editor"></textarea> <script> tinymce.init({ selector: '#editor', height: 300, plugins: 'advlist autolink lists link image charmap preview anchor code', toolbar: 'undo redo | formatselect | bold italic | alignleft aligncenter alignright | bullist numlist | code' }); </script>

βœ… Step 3: Handle in PHP

php
$content = $_POST['content'] ?? ''; echo $content; // Save to DB or display

? 2. Add Trumbowyg to a PHP Page

βœ… Step 1: Include Trumbowyg via CDN

html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/trumbowyg@2.25.1/dist/ui/trumbowyg.min.css"> <script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/trumbowyg@2.25.1/dist/trumbowyg.min.js"></script>

βœ… Step 2: Add the Textarea and Activate Editor

html
<textarea id="trumbowyg_editor" name="content"></textarea> <script> $('#trumbowyg_editor').trumbowyg(); </script>

βœ… Step 3: Handle in PHP

php
$content = $_POST['content'] ?? ''; echo $content;

? Use Cases:

  • Blog post editors

  • CMS backends

  • Knowledgebase content

  • Customer support ticket replies

  • Email templates


WYSIWYG editor PHP text editor TinyMCE PHP Trumbowyg PHP integrate TinyMCE integrate Trumbowyg HTML editor in PHP PHP content editor website editor PHP PHP form editor rich text editor PHP TinyMCE example Trumbowyg example blog editor PHP CM
Sponsored