Operations in PHP
In PHP, we can use various operators: arithmetic, logical, etc. Let’s look at each type of ope...
Data types
PHP is a dynamically typed language. This means that the variable’s data type is inferred at r...
Variables
Variables store individual values that can be used in PHP expressions. The dollar sign is used...
PHP Basics Syntax
Embedding PHP code When creating the first PHP program, some basic principles for creating PHP scrip...
First site in PHP
Now we will create a small site, which is designed to give an initial understanding of working with ...
Installing PHP
There are different ways to install all the required software. We can install components separately...
General overview of the PHP programming language
PHP is one of the most widely used web programming languages today. The vast majority of sites...
Passing parameters to the application in Nodejs
When launching an application from the terminal/command line, we can pass parameters to it. The proc...
Nodejs global variables
Node.js provides a special global object that provides access to global variables and functions that...
Working with Nodejs modules
Let’s look at some aspects of working with modules in Node.js. First of all, it should be note...