There are a number of different ways to loop using PHP. They're as follows:
Below are some examples of how each of these types of loop work.
Forfor ($x = 0; $x < 100; $x++) {
echo $x.'
';
}
?>
Foreach$array = array(1, 5, 8, 2, 9);
foreach ($array as $number) {
echo $number.'
';
}
?>
Whilewhile ($x < 10) {
$x++;
echo $x.'
';
}
?>
Do-whiledo {
$x++;
echo $x.'
';
} while ($x < 10);
?>
Chat with our AI personalities
The best way to print the numbers 1 to 100 in PHP without using a loop is with the following code: echo implode("<br>", range(1,100)); You can replace the <br> with anything that you want to separate the numbers, such as dashes. I used a line-break in the example.
while, do...while, for, foreach are used
Well it got nothing to do with PHP, you going to need JavaScript to do that :)
PHP is a recursive acronym for "PHP: Hypertext Preprocessor" created by The PHP Group. PHP is a widely used server-side scripting language and the general purpose of PHP is to create dynamic Web Pages. For more information, visit the PHP website.
< ?php // This is an example of comment in PHP /* This is another example of comment in PHP and we can write comments in multiple lines using this method */ ? >