PHP Program to Find Year is Leap OR Not

In this post I am going to describe the basic PHP Program which tell us weather the year is Leap or not. Leap year are year which has one extra day and the year which are completely divisible by 4 are leap Year. We will use same logic in

PHP Program to Draw a Pattern

In this post I am going to describe the very basic PHP Program which tell us how draw Pattern. Patten are the one of the most important and basic program which are very frequently asked in interviews and these programs are very easy to make. These program generally

PHP Program to Draw a Pattern

In this post I am going to describe the very basic PHP Program which tell us how draw Pattern. Patten are the one of the most important and basic program which are very frequently asked in interviews and these programs are very easy to make. These program generally

PHP Program to Reverse a Numbers

In this post I am going to describe the PHP Program which tell us how to Reverse a number. Reversing a number means printing a number in reverse order eg if a number is as 1234 then after reversing it will be printed as 4321.

PHP Program to Swap two Numbers without using third variable

In this post I am going to describe the very basic PHP Program which tell us how to swap two numbers without using third variable. This program is very commonly asked in the interviews 7 out of 10 times this type of question are asked in the interviews

PHP Program to Find Factorial of a Number

In this post I am going to describe the PHP Program which tell us how to find Factorial of a number .Factorial of a number is the product of an integer and all the integers below it eg Factorial of 4 is 4*3*2*1=24 24 is the Factorial

PHP Program to Find Number is Even OR Odd

In this post I am going to describe the basic PHP Program which tell us weather the given number is Even or Odd. The number which is completely divisible by 2 are known to be Even and rest of all are known to be even.

PHP Program to Find Highest Common Factor(HCF)

In this post I am going to describe the PHP Program which tell us how to find HCF. HCF stands for Highest Common Factor . Highest Common Factor(HCF) of two or more numbers is the greatest number which divides each of them.