Learn: PHP

What is Inheritance in PHP?

In this tutorial we will explain inheritance in PHP, a mechanism that allows a child class to inherit properties and behaviors from a parent class.

How to Connect to MySQL with Laravel

In this guide, you will learn how to connect your Laravel application to your MySQL database.

How to Install Laravel

In this tutorial, we'll show you how to install Laravel for the first time. Laravel is a free and open-source PHP-based web framework.

When do you use POST vs GET in PHP

Within PHP programming, the two most common HTTP request methods are GET and POST. They are used to retrieve or send data to a server.

How to change the maximum upload file size

This article describes how to change the maximum upload file size for PHP scripts in the php.ini configuration file.

Learn