write the prime number of program?in php
Answers were Sorted based on User's Feedback
Answer / mishra ashutosh
i am assuming that you want to test whether a no is prime or not.
$no=123;//lets say, u can take this value form also using $_POST or $_GET
$flag=0;
for($i=2;$i<$no;++$i){
if($no%$i==0){
$flag=1;
break;
}
}
if($flag==1)
echo "$no is not a Prime No" ;
else
echo "$no is a Prime No" ;
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / 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 |
What is the use of session and cookies in php?
I am writing an application in php that outputs a printable version of driving directions. It contains some long sentences, and I am a neat freak, and would like to make sure that no line exceeds 50 characters. How do I accomplish that with php?
Tell me what is the difference between characters 34 and x34?
what is Abbreviavion of PHP?
What distinguishes php from something like client side java script?
Is null or empty c#?
What are the different ways we can retrive the mysql results using php ? Explain each
Explain about require and include function?
What is the Diff. Between echo() and Print() in PHP?
29 Answers CoreNet, Priya, QueenZend, Sky InfoTech, Syntel,
What are the advantages of PHP over HTML?
11 Answers Infosys, Torque Infotech,
suppose if u want to pass session value using cookies onlu.. what changes i've to made in php.ini file?
hey i m a trainee n jus wanted to ask that initially i was given the opportunity for .NET bt that project is abt to complete , nw i m asked to join a project of php on linux which is about to start , so wt say . is it a wise decision to join this project . will i be having job opportunities when i l complete my training after 4 months ? Plz suggest something ASAP .