Write a PHP script that displays 1 2 3 4 5 6 7 8 9 10 numbers on one line

Introduction

PHP is a server scripting language, and It is a powerful tool for making interactive and dynamic Web-pages. I have used WampServer 2.2 for following example.

<?php
for($num=1; $num<=10; $num++)
{
echo "$num &nbsp&nbsp";
}
?>

Result

Write a PHP script that displays 1 2 3 4 5 6 7 8 9 10 numbers on one line
Write a PHP script that displays 1 2 3 4 5 6 7 8 9 10 numbers on one line

Leave a Comment