
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 1060 Articles for PHP

227 Views
The average or mean of an array is a basic mathematical operation in programming. The average is used in analytics, finance, and reporting. One of the real-life applications is a website that calculates the average rating of a product or the average score of a test. In this article, we are going to learn how we can calculate the average of an array of numbers in PHP using different approaches. What is Average? The average is obtained by calculating the sum of all elements in an array and then dividing the sum by the total number of elements ... Read More

616 Views
In this problem, we are given a number and a percentage value, and we have to find the percentage of the given number. In this article, we are going to learn how we can calculate the percentage of a number in PHP using different approaches. Example 1 The percentage of 300 with respect to 40% is calculated as (300 × 40) / 100 = 120. Input number=300; percentage = 40; Output 120 Example 2 The percentage of 300 with respect to 40% is calculated as (400 × 15) / 100 = 60. Input number=400; percentage = 15; Output 60 ... Read More

477 Views
What is Simple Interest and Compound Interest? Simple Interest is the interest that depends only on the principal amount taken while compound interest is compounded, i.e., previous interest is added in the current time period. In this article, we are going to learn how to calculate simple interest and compound interest using PHP, as this PHP tutorial is important for beginners. The formula for Calculating Simple Interest is: Simple Interest (SI) = P × R × T / 100 Where: P is the principal amount. R is the interest rate. ... Read More

57 Views
We use PHP if statement with && (AND) operator to check the two conditions. If both the conditions are true AND (&&) operator return true otherwise return false. In PHP, we have an "and" keyword similar to the "&&" (AND) operator, but it has lower precedence than using an && (AND) operator. Therefore, it is best to avoid the "and" keyword for better clarity, and it also sometimes behaves differently in complex expressions. Basic Syntax if (condition1 && condition2) { echo "Both conditions are true!"; } 1) A block of code executes only if ... Read More

2K+ Views
Problem Description In this problem, we are given two numbers, and we have to find the value obtained after adding one number to another. In this article, we are going to learn how we can add two numbers in PHP using different approaches. Example 1 Input $number1 = 8; $number2 = 12; Output 20 Explanation The addition of $number1 + $number2, i.e., 8 + 12, will give 20 as result. Example 2 Input $number1 = 10; $number2 = 10; Output 20 Explanation The addition of $number1 + $number2, i.e., 10 + 10, will result in 20. Below ... Read More

2K+ Views
A multiplication table is a useful mathematical tool that is used to print the products of a given number with a range of values, generally, it is printed from 1 to 10. In this article, we are going to learn multiple ways to generate and print multiplication tables in PHP. Formula to Generate Multiplication Table To create a multiplication table for any number, use the formula: Answer = Number × MultiplierWhere:number is the fixed value for which the table is generated.Multiplier is the range of values (e.g., 1 to 10). Example 1 Input: Number ... Read More

3K+ Views
Binary to decimal conversion is the process of converting a binary number i.e., number represented using only two bits 0s and 1s into its equivalent decimal number i.e., base 10 form. In this article, we are going to learn how we can convert the binary form of a number to a decimal form of a number in PHP using different approaches. How to convert Binary to Decimal? Binary numbers (base-2) are composed of only 0s and 1s bits which are used by machines, Decimal numbers are base-10 form numbers that humans use. For converting a binary number to a decimal, ... Read More

3K+ Views
A string is a sequence of characters, including alphabets, numbers, and symbols. In this tutorial, we are going to learn how we can count the number of vowels in a given string in PHP using different approaches. Vowels in English are a, e, i, o, u, and they can be either uppercase or lowercase. What is a Vowel? Vowels are alphabetic characters that represent specific speech sounds.There are a total of five vowels, both uppercase and lowercase in the English language: a, e, i, o, u Example 1 Input: string = "Tutoriaspoint" ... Read More

79 Views
When you try to build a website for production or just start learning web development, you need a server to make your web application accessible from the browser to other users, either to use it or test its functionality. The web server is an interesting part of any web application that involves backend tasks. Nginx is a better choice for a server to serve websites. It is known for its efficiency and capacity to handle large traffic. Perhaps as a server, Nginx can also work as a reverse proxy and load balancer. The pronunciation of the word "Nginx" is like ... Read More

4K+ Views
Problem Description Sometimes we need to compare two arrays in PHP to check if they are equal. Talking about equality, it means that the arrays have the same elements, in the same order, or even that their data types match. In this article, we will discuss how we can check if two arrays are equal or not in PHP. The following are different approaches to check If two arrays are equal in PHP - Brute Force Approach Using the == Operator Using array_diff() Method ... Read More