Skip to content

Instantly share code, notes, and snippets.

@SushantSinghRajput03
Created February 21, 2020 13:22
Show Gist options
  • Save SushantSinghRajput03/e6b514b4a68a0950efe18bd4f7032408 to your computer and use it in GitHub Desktop.
Save SushantSinghRajput03/e6b514b4a68a0950efe18bd4f7032408 to your computer and use it in GitHub Desktop.
<?php
$num = 1;
do
{
echo "sushant count: $num<br>" ;
$num++;
}while($num<=4)
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment