How To Implement PHP Code To List The Prime Numbers

admin_img Posted By Bajarangi soft , Posted On 27-11-2020

The numbers which is only divisible by 1 and itself is called prime number. Numbers 2, 3, 5, 7, 11, 13, 17, etc. are prime numbers. 2 is the only even prime number. It is a natural number greater than 1 and so 0 and 1 are not prime numbers.So today we discuss how to list prime number

How To Implement PHP Code To List The Prime Numbers

Complete Code For Implementing PHP Code To List The Prime Numbers.

<!DOCTYPE html>
<html>
<head>
    <title>How To Implement PHP Code To List The Prime Numbers</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet">
</head>
<style>
    body {
        background: black;
    }

    .form-control {
        width: 80%;
    !important;
    }
</style>
<body>
<body>
<div class="container">
    <br/><br/>
    <div class="text-center">
        <h1 id="color" style="color: white;">PHP Code To List The Prime Numbers</h1>
    </div>

    <div class="well">

        <form method="post">
            Enter a Number: <input class="form-control" type="text" name="number"><br><br>
            <input type="submit" class="btn btn-success" name="submit" value="Submit">
        </form>
        <?php
        if(isset($_POST['number']))
        {
            $num=$_POST['number'];
            $count = 0;
            echo "List of prime numbers from " .$num .".<br>";
            while ($count < 10 )
            {
                $num_count=0;

                for ( $i=1; $i<=$num; $i++)
                {
                    if (($num%$i)==0)
                    {
                        $num_count++;
                    }
                }
                if ($num_count<3)
                {
                    echo $num."  ";
                    $count=$count+1;
                }
                $num=$num+1;
            }
        }
        ?>
    </div>
</div>
</body>
</html>

Related Post