php

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
Getting Started with The Yii PHP Framework - Part 2 — step-by-step Linux tutorial on Progressive Robot

Getting Started with The Yii PHP Framework – Part 2

In this tutorial, we continue what we started last time when we installed the Yii framework on the VPS and created our first application. We will go ahead and use some of the code generation tools provided by Yii to set up a first model for our data, generate the code for the CRUD operations, and take a look at how a typical Yii application workflow works.

Read more
CHAT