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.
<?php
if(isset($_POST['submit'])){
 $number= $_POST['number'];
 for($i=2;$i<=$number;$i++){  //loop for numerator
   for($j=2;$j<=$number;$j++){  //loop for denominator
     if($i<=$j){ //checking weather the value of denominator is greater then or equal to numerator
	echo $i.","; //if this condition is true then the numerator is prime.
	break;
       }
     if($i%$j==0){//this condition checks weather the numerator is divisible by denominator
	break;
       }
    }
  }
}
?>
<html>
	<head>
		<title>Prime Series</title>
	</head>
	<body>
		<form action="" method='POST'>
		<label for="number">Please Enter Length of series</label>
		<input type="text" name="number" value="">
		<br><br>
		
		<input type="submit" value="Done" name="submit">
		</form>
	</body>
</html>

Program Output:

Stay tuned for the PHP Magento, WordPress and Magento2 latest tutorial and updates, Hope you enjoyed reading, if you need the professional Magento Development / PHP we can help you, just Click on the Link and send me your requirements.

Please Like the Post on Facebook or Google+.