Showing posts with label factorial number program in form php. Show all posts
Showing posts with label factorial number program in form php. Show all posts

Friday, May 24, 2024

factorial number program in php

Factorial number 

Factorial number

Factorial number 


1] Factorial numbers "!" It is indicated by the icon.

2]  means that all negative numbers are less than 
   f or equal to the product of the given positive numbers

factorial number program in php

Example :-

<?php
$number=9;
$factorial=1;
for($a=$number;$a>=1;$a--)
{
    $factorial=$factorial*$a;
}
echo "Factorial of $number is $factorial";
?>

factorial number program in php

Output :-

factorial number check

factorial number using form php

Example :-

<form method="post">
    Enter The Number <br><br>
    <input type="number" name="number"id="number"><br><br>
    <input  type ="submit" name="submit" value="submit">
</form>
<?php
if($_POST){
    $factorial = 1;
    $number= $_POST['number'];
    echo "Factorial of $number;<br><br>";
    for ($i=1;$i<=$number; $i++){
        $factorial=$factorial*$i;      
    }
    echo $factorial;

}
?>

Output :-

factorial number check

Related Articles :-

how to run php code in xampp

palindrome number

php even odd program

registration form php

PHP Syntax Tag

PHP Array

PHP Switch Statement

PHP if else Statements

PHP Data type

PHP Introduction