php

How To Install Wordpress and PhpMyAdmin with Docker Compose on Ubuntu 14.04 — step-by-step Docker tutorial on Progressive Robot

How To Install WordPress and PhpMyAdmin with Docker Compose on Ubuntu 14.04

This article provides a real-world example of using Docker Compose to install an application, in this case WordPress with PHPMyAdmin as an extra. WordPress normally runs on a LAMP stack, which means Linux, Apache, MySQL/MariaDB, and PHP. The official WordPress Docker image includes Apache and PHP for us, so the only part we have to worry about is MariaDB.

Read more
How To Set Up Visual Studio Code (VS Code) for PHP Development — step-by-step Programming tutorial on Progressive Robot

How To Set Up Visual Studio Code (VS Code) for PHP Development

Visual Studio Code, also known as VS Code, is a free source code editor software or IDE (integrated development environment) available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be customized to serve a wide variety of development needs. In this guide, you’ll learn how to set up Visual Studio Code for working on PHP projects.

Read more
How To Use Migrations to Create and Manage Database Tables in Laravel — step-by-step Programming tutorial on Progressive Robot

How To Use Migrations to Create and Manage Database Tables in Laravel

In this guide, you’ll create a database migration to set up the table where you’ll save the application links. In order to do that, you’ll use the [Artisan](https://laravel.com/docs/8.x/artisan) command-line tool that comes with Laravel by default. At the end, you will be able to destroy and recreate your database tables as many times as you want, using only `artisan` commands.

Read more
How To Use Web APIs in PHP 8.0 — step-by-step Programming tutorial on Progressive Robot

How To Use Web APIs in PHP 8.0

In this tutorial, you’ll leverage the power of APIs in a basic web application that will retrieve, transform, and display data from the OpenWeather Map API. You’ll build a client for a RESTful API using HTTP POST and GET calls to interact with the server. You’ll start with a basic app before enabling user input and using a Software Development Kit (SDK) to help future-proof the code. The final web application will give users real-time weather information about a city of their choice.

Read more
What is PHP? — step-by-step Programming tutorial on Progressive Robot

What is PHP?

PHP is a general-purpose programming language created by Rasmus Lerdorf in 1994. Originally designed to facilitate building web pages with dynamic components, PHP has seen many changes and improvements since its first release. These changes, along with the rise in popularity of WordPress, a free and open-source content management system written in PHP, have helped it become one of the most popular programming languages for the web.

Read more
CHAT