php

How To Use the LEMP 1-Click Install on the cloud provider — step-by-step Linux tutorial on Progressive Robot

How To Use the LEMP 1-Click Install on the cloud provider

LEMP stack is a solution stack that employs a specific group of software to host web applications on a server. This term is an acronym which represents the Linux operating system with the Nginx web server. The site data is stored in a MySQL database, and dynamic content is processed by PHP. This tutorial will guide you through spinning up a cloud servers with LEMP stack pre-installed, using the the cloud provider LEMP 1-Click App.

Read more
How To Work with Strings in PHP — step-by-step Programming tutorial on Progressive Robot

How To Work with Strings in PHP

A string is a sequence of one or more characters that may consist of letters, numbers, or symbols. In this article, you will learn how to create and view the output of strings, use escape sequences, concatenate strings, store strings in variables, and the rules of using quotes, apostrophes, and newlines within strings in PHP.

Read more
How To Deploy Laravel 7 and MySQL on Kubernetes using Helm — step-by-step Docker tutorial on Progressive Robot

How To Deploy Laravel 7 and MySQL on Kubernetes using Helm

In this guide, you will create a Laravel PHP application, build your app into a Docker image, and deploy that image to a Kubernetes cluster using the LAMP Helm chart. Next, you’ll set up an Ingress controller to add SSL and a custom domain name to your app. When completed, you will have a working Laravel application connected to a MySQL database that is running on a Kubernetes cluster.

Read more
How To Insert New Database Records in Laravel Eloquent — step-by-step Programming tutorial on Progressive Robot

How To Insert New Database Records in Laravel Eloquent

In the second part of our Practical Introduction to Laravel Eloquent Series, you’ll learn how to insert records in the database using Eloquent models. One of the biggest advantages of using an ORM system is the ability to manipulate rows in a database table as objects within your codebase. With Eloquent, as with other ORMs, the object itself provides methods that can be used to persist it to the database, saving you the work of writing SQL statements.

Read more
CHAT