PHP code to generate color code
How to show color code using php? The color code can be displayed using hex or RGB format. PHP str_shuffle() function is used to shuffle a...
How to show color code using php? The color code can be displayed using hex or RGB format. PHP str_shuffle() function is used to shuffle a...
The factorial function (symbol: !) says to multiply all whole numbers from our chosen number down to 1. i.e 2! = 2*1 =2 3! = 3*2*1= 6 5! = 5*4*3...
We will learn about how to check if a number is prime or not in PHP. The positive integers having only two factors, 1 and the integer itself are ca...
how to add day, month, year in date using php ? There are two method to add days, months and years in date by using built-in php functions as below...
We will get $num variable value by using $_post method. if($num%2==0) condition is used to Find Even and odd Number in below PHP Program. ...
We have created below PHP Program to divide two Numbers. HTML <form> tag with post method is used to submit two numbers. $_POST variable is u...
We have created below PHP Program to multiply two Numbers. HTML <form> tag with post method is used to submit two numbers. $_POST variable is...
We can substract two Numbers using PHP Program. We need html elements like form tag, input tag. $_POST variable is used to retrive 2 numbers. &n...
We have created below PHP Program to add two Numbers. HTML <form> tag with post method is used to submit two numbers. <input type="su...