HomePHP Write a program to count 5 to 15 using PHP loop Vikram somai August 27, 2021 0 Comments Facebook Twitter Write a program to count 5 to 15 using PHP loopcode:-<?php$count = 5;while($count <= 15){ echo $count; echo "<br>" ; $count++;}?>output:56789101112131415 Tags PHP Facebook Twitter
Post a Comment
If you have any doubts, Please let me know
Thanks!