Slim: A micro framework for PHP
Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs.
Nothing but 0s and 1s
Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs.
How to setup TinyMCE text editor Follow the below steps to add TinyMCE editor in PHP or HTML file. 1. Add TinyMCE editor’s JS library : <script type=”text/javascript” src=”tinymce/tinymce.min.js”></script> 2. Add HTML textarea to display Editor box : <textarea name=”editor” id=”editor”></textarea> 3. Call the TinyMCE editor function : <script> tinymce.init({ selector: ‘textarea#editor’, //Change this value according to your HTML auto_focus: … Read more