PHP

CRUD operations are the most used functionality in the web application managed dynamically. The add, edit, and delete functionality helps to manage data with the database on the website. You can integrate CRUD operations with PHP to perform create (insert...

By: CodexWorld Oct 12, 2023
PHP

Import and Export feature is very useful for the data management section. The Import functionality allows the user to upload and insert multiple data in the database. The export functionality allows the user to download the table data list and save in a fi...

By: CodexWorld Feb 19, 2019
PHP

CKEditor and TinyMCE editor is the most popular plugin to add rich text editor on the web page. Once the WYSIWYG editor content is submitted, the value needs to be stored for later use. Generally, in the web application, the database is used to store the i...

By: CodexWorld Feb 5, 2019

When you are working with a large database that handles a large amount of data, you must consider using the server-side option in DataTables. With server-side processing, the searching, ordering, and paging operations are handled on the server. So, the Dat...

By: CodexWorld Aug 23, 2022

Delete multiple records on a single click is very useful for the large data list. The user doesn't need to click multiple times for delete multiple rows, instead of that, all records can be deleted on a single click. Multiple records deletion functionality...

By: CodexWorld Aug 1, 2018
PHP

Generally, the import section of phpMyAdmin is used to import or restore the database from a SQL file. You can restore the database from PHP script without login to your hosting server or phpMyAdmin. Restore database from PHP script is very useful when you...

By: CodexWorld Feb 19, 2018

If you try to change your WordPress username, you will see the notification like this - Usernames cannot be changed. But many times we need to change the WordPress admin username for security purposes. You will find many plugins to change the username in W...

By: CodexWorld Jul 20, 2017
PHP

When we upload an image file in PHP, the uploaded image is stored in a directory of the server and the respective image name is stored in the database. At the time of display, the file is retrieved from the server and the image is rendered on the web page....

By: CodexWorld Aug 16, 2023

Generally, one database is used for a single web application. But sometimes we need to use two or more database in a single site. If your application built with CodeIgniter framework, it's very easy to use multiple databases. CodeIgniter provides an easy w...

By: CodexWorld Jul 12, 2017
keyboard_double_arrow_up