PHP

Working with phpMyAdmin – Creating Users and Assigning Privileges

In this article on Working with phpMyAdmin – Creating Users and Assigning Privileges, I will explain how to create a user for a database and how to assign privileges to that user. Also developed in PHP, phpMyAdmin is a tool that allows the users to manage MySQL database. Basically, it is a free software tool …

SQLite

Understanding SQLite Database With Examples

In this article on Understanding SQLite Database With Examples, I will explain what is SQLite and when you should use it. Here you will also find some examples of using SQLite. When you need to use a light weight, cross-platform, and open-source database, SQLite is the best choice. It is a serverless database. In other …

Django

Introduction to Django Framework and its Features

In this article on Introduction to Django Framework and its Features, I will explain the Python Web Development Framework Django. Also, I will discuss why this framework is preferred by web developers and its distinguishing features. Basically, Django is a python based framework that enables you to build web applications fast and in a simpler …

PHP

MySQLi Prepared Statement and its Benefits

Today I will discuss MySQLi Prepared Statement and its Benefits. Prepared statements provide a better way to execute SQL queries. Apart from being safe, the prepared statements allow the reusability of code. Since the statement need to be prepared once and can be executed any number of times by just replacing the parameters, these statements …

PHP

Examples of Database Connectivity Using MySQLi in PHP

This article presents Database Connectivity Using MySQLi in PHP. Create a database with the ‘CREATE DATABASE’ command using a PHP program. (https://www.programmingempire.com/creating-a-database-with-mysqli/) How to create a database table in a MySQL database? (https://www.programmingempire.com/example-of-creating-a-mysql-database-table-using-php/) Insert Records Using HTML Form in a Database Table (https://www.programmingempire.com/inserting-a-record-in-a-database-table-using-mysqli-in-php/) Using Prepared Statement in PHP to insert a record. (https://www.programmingempire.com/inserting-record-using-prepared-statement-in-php/) How to …

MEAN Stack

Overview of Mean Stack

This article provides an Overview of Mean Stack. Basically, it is a JavaScript-based full-stack technology stack that enables developers to build modern web applications faster. Since JavaScript is the language to develop both client-side and server-side development, developers need to learn a single language only. Besides, this technology stack provides a simple, cost-effective solution. Also, …