Write a php code which could be used to generate random
numbers between 1 - 100 and display them on the screen.
Answers were Sorted based on User's Feedback
Answer / anjithkumar.garapati
<?php
$n=10;//number_of_numbers_required_to_display
$num=rand(1,100);
for($i=0;$i<n;$i++){
echo $num;}
?>
| Is This Answer Correct ? | 25 Yes | 14 No |
Answer / ashok
<?php
$n=10;//number_of_numbers_required_to_display
$num=rand(1,100);
for($i=0;$i<$n;$i++)
{
echo rand(1,100)."<BR>";
}
?>
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / solutio magister
<?php
$n=10;//number_of_numbers_required_to_display
for($i=0;$i<$n;$i++)
{
echo rand(1,100)."<br>";
}
?>
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / shankar
<?php
$n=10;//number_of_numbers_required_to_display
for($i=0;$i<$n;$i++){
$num=rand(1,100);
echo $num;?>
<br/>
<?php
}
?>
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / yatin
<?php
$n=100; //number_of_numbers_required_to_display
for($i=0;$i<$n;$i++)
{
$num=rand(1,100);
echo $num."<br>";}
?>
| Is This Answer Correct ? | 4 Yes | 0 No |
What is cookies? How to create cookies in php?
How to set session.gc_divisor properly?
How cookies are transported from servers to browsers?
How to execute an sql query?
What is the difference between static and dynamic websites?
Echo is used to Display message on screen. Which is used with echo to not output the trailing newline?
Whats the difference between include() and require()?
Is it easy to learn wordpress?
What does $globals means?
Is salary fixed or variable cost?
How to run the interactive php shell from the command line interface?
What are the differences between mysqli_connect and mysqli_pconnect?