Storing Files/Data with PHP & MySQL – Detailed Tutorial 2017

At some point, most web programmers are going to need to learn databases. They’re the premier way to store information in an online environment, and they’re often the most efficient solution. But do…

Read more

PHP with MySQL Connectivity – Detailed Tutorial (CRUD)

One of the defining features of PHP(Hypertext Preprocessor) is the versatility it offers for connection to, and manipulation with databases. In this article, we look at some features of the PHP with MySQL…

Read more

Complete PHP Tutorial – Chapter 8

PHP Functions always plays an important role in programming while developing an application/site in PHP language. User Defined Functions A function is a block of code that needs to be used multiple times…

Read more

Complete PHP Tutorial – Chapter 7

Here you’ll learn about PHP Control Structures like IF/Else Loop, While Loop, Switch Loop, For/Foreach Loop etc If Else Statements Conditional statements perform different things for different states. The if else statement runs…

Read more

Complete PHP Tutorial – Chapter 5

Here we’ll cover PHP Operators that are of various types like Arithmetic Operators, Assignment Operators, Logical Operators and Comparison Operators Arithmetic Operators Arithmetic operators work with numeric values to perform common arithmetic operations….

Read more

Complete PHP Tutorial – Chapter 4

In this chapter, we’ll cover PHP Data types which are of many types as listed below – Data Types A data type is the type of information stored within a variable. PHP has…

Read more

Complete PHP Tutorial – Chapter 3

In this tutorial, you’ll learn about PHP Variables, Constants and Parameters. Regular Variables Variables are containers which we use for storing information. PHP variables work a bit differently to other languages so I…

Read more