Tag: php

How to Make a Redirect in PHP

February 9, 2023

This guide explains two ways to set up PHP redirects, the advantages and disadvantages of each method, and the best practices to follow.

Read more

How To Install PHP On Ubuntu 20.04 or 22.04

November 24, 2022

PHP is a script-based server-side programming language. PHP is often used to automate server tasks and is the component that handles tasks like dynamic content, database requests, and processing and displaying data. This guide will walk you through installing PHP on Ubuntu.

Read more

How to Install LAMP in Ubuntu

October 13, 2022

A LAMP stack is a set of open source software tools used for web application development. For a web application to work, it has to include an operating system, a web server, a database and, a programming language. Learn how to install and set up LAMP in Ubuntu.

Read more

How to Check PHP Version

January 14, 2021

To avoid compatibility problems when implementing new PHP-related features or debugging a website, it is useful to know the PHP version you are working with. This tutorial explains how to check the PHP version running on your website or a local machine.

Read more

How to Install LAMP Stack on CentOS 8

July 19, 2020

The LAMP stack consists of open-source software required for web development. Install and configure the LAMP stack on your CentOS 8 server by following this step-by-step tutorial.

Read more

How To Install and Use PHP Composer on Ubuntu 16.04

September 23, 2019

Composer is an application that tracks dependencies for a project, allowing you to specify a set of libraries for a specific project. It identifies the versions and dependencies and installs them to the project. This guide will help you install and get started with Composer on Ubuntu 16.04

Read more

How to Install and Use PHP Composer on CentOS 7

September 10, 2019

Composer is an application that tracks dependencies for a project, allowing you to specify a set of libraries for a specific project. It identifies the versions and dependencies and installs them to the project. This guide will help you install and get started with Composer on CentOS 7.

Read more

How To Install and Use PHP Composer on Ubuntu

August 29, 2019

Composer is an application that tracks dependencies for a project, allowing you to specify a set of libraries for a specific project. It identifies the versions and dependencies and installs them to the project. This guide will help you install and get started with Composer in Ubuntu.

Read more

4 Different Types of Errors in PHP

August 6, 2019

A PHP Error occurs when something is wrong in the PHP code. An error can be simple as a missing semicolon, or complex as calling an incorrect variable. To resolve a PHP issue in a script, you must understand what kind of problem is occurring. Learn about the types of errors.

Read more

PHP Error Reporting: How to Enable & Display All Errors / Warnings


If a script is not written correctly, or if something unusual happens, PHP can generate an error message. The error message provides valuable insight and can point you in the right direction while troubleshooting. Follow the instructions in this tutorial to find out how to enable error reporting.

Read more