Print Hollow Diamond Pattern in PHP
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
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
Write a program to print the left & right arrow pattern in php language. There are you will learn how to print the left & right arrows of stars by using the for loop. &n... Read More
How to print the rhombus pattern in the php language of the stars using the for loop. There are you will learn how to print the rhombus pattern in the php language of the... Read More
Write a program to draw the half pyramid pattern in the php language of stars using the for loop. Here, you will learn how to draw the half pyramid pattern in the ph... Read More
How to print a star pattern without using loop in the php programming language. Here, you will learn how to print the star pattern without using the loop. Take an exam... Read More
PHP program of decision making by using the php switch case statement, In this program you will learn how to make decisions by using a php switch case statement. The php swit... Read More
PHP program of decision making, There are you will learn how to make control decisions in the PHP program. C program of decision making by using if & if-else statement ... Read More
PHP program to calculate the area of an equilateral triangle. There are you will learn how to find the area of an equilateral triangle in PHP language. Formula: ... Read More
PHP program to enter the base and height of a triangle and find its area. There are you will learn how to find the area of a triangle by using the base & height of the trian... Read More
PHP program to enter the two angles of a triangle and find the third angle. There are you will learn how to find the third angle of a triangle in PHP language. Ba... Read More
PHP program to enter any number and calculate its square root. There are you will learn how to find the square root of any number in the PHP language. Formula:... Read More
PHP program to find the power of any number x^y. There are you will learn how to find the power of any number x^y in PHP language. Formula: r = b ^ y w... Read More
PHP program to convert the days into years, weeks, and days. There are you will learn how to convert the days into years, weeks, and days in PHP language. Base... Read More
PHP program to enter the temperature in Fahrenheit and convert it to Celsius. There are you will learn how to convert the temperature in Fahrenheit and convert it to Celsius in ... Read More
PHP program to enter the length in centimeters and convert it into meters and kilometers. There are you will learn how to convert the centimeter into meter and kilometer&nb... Read More
PHP program to enter the length and breadth of a rectangle and find its area. There are you will learn how to find the area of a rectangle in PHP language. Formula:... Read More
PHP program to enter the length and breadth of a rectangle and find its perimeter. There are you will learn how to find the perimeter of a rectangle in PHP language. ... Read More
PHP program to enter two numbers and perform all arithmetic operations. There are you will learn how to perform all arithmetic operations in PHP language. Let us un... Read More
PHP program to the sum of two integers <?php // PHP program to the sum of two integers $p = 5; $q = 7; $r = $p + $q; echo "\nResult:: " . $p . " + " . $q . " = " .... Read More