Connect to a Database Using PHP MySqli

How Do I Put Summernote in Dark Mode?

Put Summernote in Dark Mode

Summernote is a popular WYSIWYG editor for web applications, and it supports a dark mode theme out of the box. Here are the steps to put Summernote in dark mode: Download the Summernote CSS file from the official website or use the following link: https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.18/summernote-bs4-dark.css Include the CSS file in your HTML code. You can Read More

How To Submit Summernote Content to Mysql Database in PHP?

How To Submit Summernote Content to Mysql Database in PHP

In this tutorial, I will show you how to submit Summernote content to MySql database. Summernote is a popular WYSIWYG (What You See Is What You Get) editor that allows users to format and style text, add images and videos, and more. In web applications, it’s often used to allow users to create rich-text content Read More

How do I make a custom toolbar in Summernote?

custom toolbar in Summernote

To create a custom toolbar in Summernote, you will need to modify the toolbar option during initialization of the Summernote editor. Here’s an example of how you can create a custom toolbar: $(document).ready(function() { var customButtons = [ [‘style’, [‘style’]], [‘font’, [‘bold’, ‘italic’, ‘underline’, ‘clear’]], [‘para’, [‘ul’, ‘ol’, ‘paragraph’]], [‘insert’, [‘link’, ‘picture’, ‘video’]], [‘table’, [‘table’]], Read More

How To Use Summernote in Web Applications

HOW TO USE SUMMERNOTE

Summernote is a free and open-source WYSIWYG (What You See Is What You Get) editor for web applications. It allows users to create, edit, and format text and HTML content with ease. In this article, we will explore how to use Summernote and get the most out of its features. Getting Started with Summernote To Read More

Delete Images Off Server In Summernote with php, mysql, jquery, and ajax

Delete Images Off Server In Summernote with php, mysql, jquery, and ajax

In this article, I will explain how to delete images from the server using Summernote, a WYSIWYG editor, with the help of PHP, MySQL, jQuery, and Ajax. Summernote is a popular open-source WYSIWYG editor that allows users to create rich text content, including images. Sometimes, users may want to delete the images they have uploaded Read More

Summernote How To Delete Images Uploaded To A Folder

Summernote How To Delete Images Uploaded To A Folder

In Summernote you want to be able to delete your images in your directory or folder at times. As far as I can see, this is the only tutorial out there on this, so I decided to do it. I made a tutorial in the past that shows you how to upload images to a Read More

Summernote How To Store Images and Entries in MySQL Without Base 64

Summernote How To Store Images and Entries in MySQL Without Base 64

In this tutorial, we will show you how to store images and entries in MySQL without base 64 encoding. Base 64 encoding will bloat your database. The way I show you how to do it here will not bloat your database. You can download summernote here, however you do not need to download it for Read More

How To Move A Large WordPress Website To A New Server

How To Move A Large WordPress Website To A New Server

In this how to tutorial I will show you how to move a large WordPress website from one server to another. In this tutorial I assume that you already know how to SSH into your server. You must already know these following things, if you do not, click the link and learn them and then Read More

Store Image Uploads On Server With Summernote Not Base 64

Store Image Uploads On Server With Summernote Not Base 64

Store Image Uploads On Server With Summernote, not the default base 64! If you do image uploads through Summernote you will notice that it stores base 64 code for the image. If you are saving that kind of code in your database you will notice that it bloats the database. This will cause lag time Read More

Install WordPress Shell Access Using wget Command Ubuntu Terminal

Install WordPress Shell Access Using wget Command Ubuntu Terminal

This article will help you install WordPress with Shell access ( ssh ) using the wget command in a Linux/Ubuntu terminal. Logging Into Shell If you do not know your shell or ssh login contact your hosting provider and they can provide you with that information. If you already have that information you can proceed. Read More

Grant privileges to a Database in MySqli

Grant privileges to a Database in MySqli

Grant Privileges to a Database in MySqli MySqli is a PHP extension used to connect and communicate with MySQL databases. One of the key features of MySqli is the ability to grant privileges to users for accessing databases. This feature allows the database administrator to have better control over who can access and modify the Read More