Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com
Last updated: May 3, 2022

Basics

PHP stands for Hypertext preprocessor, it's an HTML-enabled server-side programming language, which is simple, easy to use, loosely typed, flexible and open source. It enables the creation of cross-platform, maintainable, and scalable web apps. Here we will be learning about the basics of PHP like arrays, operators, control statements, functions, regex, and superglobals. which are building blocks of PHP.
PHP Introduction
In this article, we’ll learn about PHP and why and where it is used.
Advantages of PHP over Other Programming Languages EASY
This article is about the advantages of PHP over other programming languages. This article discusses what makes PHP still a topic of interest.
Author Shiva
0 upvotes
PHP Installation
This article discusses PHP Installation. We talk about why it is good to learn and how it makes it easier to develop applications.
PHP trim() Function EASY
In this blog, we will learn about PHP trim() function.
PHP Syntax and Coding Style
In this blog, we will learn PHP syntax and coding practices including, PHP file, commentating, best practices etc.
Difference Between Echo and Print in PHP EASY
Echo in PHP, also known as 'echo,' shows output in browsers or the command line, whereas print is also a statement that we can use to display the output.
PHP variables EASY
We shall go through how we create and declare PHP variables with their rules and output variables.
Data Types in PHP
This article discusses PHP Data Types and their uses. We talk about why it is good to learn and how it makes it easier to develop applications.
PHP Operators
This article discusses PHP Operators and their uses. We talk about why learning PHP Operators is a good idea and how PHP Operators make it easier to develop applications and perform logic.
PHP Maths
PHP Maths is the PHP library involving mathematical functions and constants available in PHP.
Control Statements in PHP EASY
Control statements in PHP are used to control the flow of execution in a script based on conditions. In this article, we will discuss primary control statements in PHP:
Functions in PHP
This blog covers the concept of PHP functions, a part of code that can be used repeatedly.
What is PDO in PHP MEDIUM
This article will discuss the PDO, how it works, key features, and uses of the PDO in PHP.
PHP ucwords() Function EASY
In this blog, we will learn about PHP ucwords() Function. We will further code a program for better understanding of PHP ucwords() Function.
PHP unset() Function EASY
In this blog, we will learn about PHP unset() function, that plays a crucial role in memory management & variable handling. We will also check out its syntax & practical implementation.
Encapsulation in PHP EASY
In this blog, we will learn about encapsulation in PHP. We will also check out its benefits and implementation for better understanding.
PHP Arrays
In this blog, we will discuss PHP arrays in detail. The article also discuss types of PHP arrays along with examples.
PHP implode() Function EASY
In this blog, we will discuss syntax and examples of implode() function in PHP, along with the difference between implode() and explode() functions.
PHP strip_tags() EASY
In this blog, we will learn about PHP strip_tags() function. We will learn its syntax and practical implementation.
PHP explode() Function EASY
In PHP, explode() is a built-in function to split a string into an array of substrings based on a specified delimiter.
String Functions in PHP EASY
Learn about string functions in PHP, including a comprehensive list of PHP string functions with descriptions, examples, and FAQs to enhance your PHP programming skills.
PHP Superglobals EASY
PHP Superglobal variables are built-in variables always available in all scopes.
PHP regex
This blog will go through what PHP regex is with its syntax. Furthermore, we will learn about PHP regex functions. At last, we will see the concept of grouping and quantifiers.
PHP Vs Javascript
This article will go over the main functional and syntax differences between PHP and Javascript.
Author akscrv
0 upvotes
How to Print Array in PHP? MEDIUM
We will learn how to print array in PHP in this blog, but before that, we will know what variables and arrays are.
PHP array_push() Function EASY
The array_push() function in PHP is used to add one or more elements to the end of an array. In this article we will learn about array_push() Function in PHP.