php

Understanding Data Types in PHP — step-by-step Programming tutorial on Progressive Robot

Understanding Data Types in PHP

In PHP, as in all programming languages, data types are used to classify one particular type of data. This is important because the specific data type you use will determine what values you can assign to it and what you can do to it (including what operations you can perform on it). In this tutorial, we will go over the important data types native to PHP. This is not an exhaustive investigation of data types, but will help you become familiar with what options you have available to you in PHP.

Read more
How To Change Your PHP Settings on Ubuntu 14.04 — step-by-step Linux tutorial on Progressive Robot

How To Change Your PHP Settings on Ubuntu 14.04

PHP is a server side scripting language used by many popular CMS and blog platforms like WordPress and Drupal. It is also part of the popular LAMP and LEMP stacks. Updating the PHP configuration settings is a common task when setting up a PHP-based website. This guide will show how to view the current PHP configuration settings of your web server and how to make updates to the PHP settings.

Read more
How To Get Total Result Count in Laravel Eloquent — step-by-step Programming tutorial on Progressive Robot

How To Get Total Result Count in Laravel Eloquent

When working with database query results, it is often useful to obtain only the total number of rows in a result set, instead of pulling the full dataset content with a regular query. Eloquent offers a few different aggregate methods that return a scalar value instead of an Eloquent object, such as count(), max(), and sum(). In this part of the series, you’ll update the main application view to show the total number of links in each list, using the count() method.

Read more
Процедура установки и настройки Laravel с помощьтю Nginx на сервере Ubuntu 20.04 — step-by-step Linux tutorial on Progressive Robot

Процедура установки и настройки Laravel с помощьтю Nginx на сервере Ubuntu 20.04

Laravel — это инфраструктура PHP с открытым исходным кодом, включающая инструменты и ресурсы для создания современных приложений PHP. Благодаря полной экосистеме с встроенными функциями популярность Laravel за последние годы…

Read more
Установка и обеспечение безопасности phpMyAdmin в Ubuntu 20.04 — step-by-step Linux tutorial on Progressive Robot

Установка и обеспечение безопасности phpMyAdmin в Ubuntu 20.04

Предыдущая версия данного руководства была написана Бреннаном Бернсом. Хотя многим пользователям требуются функциональные возможности систем управления базами данных, например, MySQL, им может показаться неудобным…

Read more
CHAT