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.

PHP Program to Find Least Common Multiple(LCM)

In this post I am going to describe the PHP Program which tell us how to find LCM. LCM stands for Least common multiple . LCM is the smallest number that is a multiple of all the numbers

PHP Program to Find Fibonacci Series

In this post I am going to describe the PHP Program which tell us about how to find Fibonacci Series. Fibonacci Series is a series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers. The simplest is the series 1,

PHP Program to Find Number is Prime or Not

In this post I am going to describe the basic PHP Program which tell us about how to find the given number is prime number or not . Prime number are those number which are divisible by 1 and themselves. In this program we are using for loop, if

PHP Program to Find Prime Series

In this post I am describing the PHP Program which tell us about how to find prime number Series. Prime number are those number which are divisible by 1 and themselves. In this program we are using for loop, if condition and break statement.