LAMP stands for Linux, Apache, MySQL, and PHP, is an open source software stack. LAMP is used to configure the web server and host the web content. This step-by-step tutorial shows how to setup LAMP and install Linux, Apache, MySQL, and PHP on Ubuntu. Linu...

By: CodexWorld Oct 10, 2016
PHP

A CSV file stores the tabular data in plain text format. Each line of the CSV file is a data record that consists of one or more fields. Bulk Import is a very useful feature to add multiple records in the database without insert manually. Using the CSV fil...

By: CodexWorld Mar 19, 2021

Remote access will allow you access MySQL database from another server. This access is helpful when you want to connect multiple databases hosted on different server. For security reason remote access to MySQL database server is disabled. You need to enabl...

By: CodexWorld Sep 12, 2016
PHP

The shopping cart functionality is an important part of every eCommerce project. It helps the user to select and purchase multiple items at once. Also, the online shopping cart allows viewing the selected items and the total price before submitting the ord...

By: CodexWorld Mar 11, 2022

AngularJS is a JavaScript Framework and it is a library written in JavaScript. AngularJS extends HTML attributes with Directives. If you are a beginner to AngularJS and looking for working example on AngularJs, this tutorial will help you a lot. This tutor...

By: CodexWorld Jul 22, 2016
PHP

The filtering feature helps to sort the recordset in the data list. Using the search and filter feature, the user can easily find the relevant data from the huge number of records. The sorting or filtering functionality is very useful in the data managemen...

By: CodexWorld Feb 25, 2021
PHP

The PHP Data Objects (PDO) extension defines a lightweight interface to access database servers in PHP. You can use the same functions to execute SQL queries for different databases. Mostly, connect, fetch, insert, update, and delete operations are execute...

By: CodexWorld Nov 7, 2021
PHP

CRUD operation helps to Create, Read, Update and Delete database records. Add, Edit, Update and Delete functionality is commonly used in the data management section of every web application. You can easily implement the CRUD operations with MySQL in PHP. G...

By: CodexWorld Dec 27, 2018
PHP

The infinite page scroll is one type of pagination where the user doesn't need to click on the link to load dynamic data. The dynamic data is loaded from the server automatically while scrolling page down. Infinite Scrolling effect is the best replacement ...

By: CodexWorld Feb 22, 2018
keyboard_double_arrow_up