Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write the prime number of program?in php

Answer Posted / akvh

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<form action="" method="post">
Enter the number: <input type="text" name="num" />
<input type="submit" name="sub" />
</form>
<?php
if(isset ($_POST['sub']))
{
$a=$_POST['num'];
$i=2;
$f=0;

while($i<=($a/2))
{
if($a%$i==0)
{
$f=1;
break;
}

$i++;

}
if($f==1)
{
echo "NOT PRIME";
}
else
{
echo "PRIME";
}
}

?>
</body>
</html>

Is This Answer Correct ?    13 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When are you supposed to use endif to end the conditional statement?

888


How can you declare the array in php?

926


What is php and its advantages?

892


What is meant by variable variables in php?

943


Differences between get, post and request methods ?

922


How can we display information of a variable and readable by human with php?

1016


Tell me what is the main difference between php 4 and php 5?

928


How to take a substring from a given string?

949


How do we get the current session id?

956


Do you know how can we check the value of a given variable is a number?

875


How to split a string into array using php?

1077


What is difference between Method overriding and overloading in PHP?

999


Explain array_uintersect()?

952


Does browser understand php?

869


How to write php function in html onclick?

889