WYSIWYG Editor is very useful when you want to allow the user to insert the formatted text content in textarea input field. Generally, the WYSIWYG editor is driven by JavaScript, converts formatted text to HTML before submitting the web form. CKEditor is a...

By: CodexWorld Feb 5, 2019

Auto Resize feature makes a textarea more user-friendly. It expands the height of textarea automatically based on the content. If your web form contains a textarea, you can add the auto resize feature to resize the height of the textarea automatically to f...

By: CodexWorld Jan 9, 2019
PHP

Short URL is easy to remember and can be shared easily on the web. There are many URL Shortener services are available that allows you to convert long URL to short URL online. If you want to create short URL with your own domain name, you need to use custo...

By: CodexWorld May 29, 2020

The jQuery UI Autocomplete plugin provides an instant way to add autocomplete suggestions feature to the textbox. Generally, the Autocomplete widget fetches the values from the database and displays the suggestions in text format under the input field. But...

By: CodexWorld Aug 11, 2022

CodeIgniter's Email class is a system library and comes with the CodeIgniter framework. So, it can be easily used in the CodeIgniter application without an additional library. Alternatively, PHPMailer library is the best option to send email via SMTP serve...

By: CodexWorld Aug 29, 2024
PHP

Email validation is the common and useful functionality on the web application. Before working with the email address, it needs to be verified and checked whether the email is valid or not. Validate email in PHP can be easily done by using filter_var() fun...

By: CodexWorld Nov 30, 2018

Autocomplete Textbox displays the suggestions under the input field to allow the user to select a value from the pre-populated values list. When the user typing in the textbox, the respective data fetched from the database and shown the suggestions in the ...

By: CodexWorld Aug 19, 2022

Datatables server-side processing allows to fetch data from the database and listed in a tabular view with search and pagination feature. If your web application handles a large amount of data from the database, you must consider using server-side processi...

By: CodexWorld May 29, 2020

A marker points out a location on the map and an InfoWindow display content in a popup over the map. Multiple markers are very useful to display multiple locations in a single map. You can embed Google Map with multiple markers and info windows using Maps ...

By: CodexWorld Nov 13, 2018

Shopping Cart helps online customers to purchase multiple items at once on an e-commerce application. Upon checkout, the shopping cart calculates the total amount for the order, handles the shipping, and shows the order preview. If your application is deve...

By: CodexWorld Jun 11, 2020
PHP

CRUD operation is the most used functionality in the web application. Almost, all web application uses CRUD functionality to manage and manipulate data in the database. PHP CRUD with MySQL helps to handle view, add, edit, and delete data from the database....

By: CodexWorld Feb 7, 2019
keyboard_double_arrow_up