Sum of Digits of a Number PHP Program using While loop
Sum of digits of a number PHP program using while loop. In this article, you will learn how to make the sum of digits of a number PHP program using while loop which can be ... Read More
Sum of digits of a number PHP program using while loop. In this article, you will learn how to make the sum of digits of a number PHP program using while loop which can be ... Read More
How to find area of a circle with diameter in PHP using functions. In this article, you will learn how to find area of a circle with diameter in PHP using functions. ... Read More
How to calculate simple interest with example in PHP. In this article, you will learn how to calculate simple interest with examples in PHP. Example Principal ... Read More
PHP code to convert celsius to Fahrenheit. In this article, You will learn how to write PHP code to convert celsius to Fahrenheit. Formula F = (C * 9/5) + 32 ... Read More
Print prime numbers from 1 to 100 in PHP using for loop and while loop. In this article, you will learn how to print prime numbers from 1 to 100 in PHP using for loop and w... Read More
PHP program to check whether a number is even or odd using an if-else statement. In this article, you will learn how to make a PHP program to check whether a number is even... Read More
Multiplication table in PHP using for loop, while loop, and function. In this article, you will learn how to make a multiplication table in PHP using for loop, while loop, ... Read More
PHP script to calculate total marks of student and display grade. In this article, you will learn how to write PHP script to calculate total marks of student and display grade. ... Read More
In this article, you will learn how to convert the reverse case of an input character in the PHP programming language. Examples 'e' after convers... Read More
PHP program to find roots of quadratic equation using sqrt() function. In this article, you will learn how to find roots of quadratic equation in php using sqrt() functio... Read More
PHP program to find factorial of a number using for loop. In this article, you will learn how to make a php program to find factorial of a number using for loop. Facto... Read More
Program to generate fibonacci series in PHP using for loop. In this article, you will learn how to make a program to generate fibonacci series in php using for loop. ... Read More
PHP program to reverse a string using for loop. In this article, you will learn how how to make a PHP program to reverse a string using for loop. String Conversion ... Read More
PHP program to find largest and smallest element in array using for loop. In this article, you will learn how to make php program to find largest and smallest element in array usin... Read More
Program to find normal and trace of a matrix in PHP using for loop. In this article, you will learn how to make program to find normal and trace of a matrix in php using for l... Read More
Multiplication of two matrix in PHP of same dimensions using for loop. In this article, you will learn how to make multiplication of two matrix in php of same dimensions using for ... Read More
PHP program to calculate the power of a number using for loop. In this article, you will learn how to calculate the power of a numbers in php. Syntax to calculate the ... Read More
Find lcm of two numbers in PHP using while loop. In this article, you will learn how to find lcm of two numbers in php using while loop. Find LCM of Two Numbers in PHP... Read More
Print hollow diamond pattern in PHP. In this program, you will learn how to print hollow diamond patterns in php language. Source Code <?php // Print Hol... Read More
Butterfly pattern in php of numbers, In this article, you will learn how to print the butterfly pattern in php of numbers. Example This the bu... Read More