Hyvor Developer
  Home   Download   Copy
Code
<?php
$a = 0;
do {
	echo 'The number is ' . $a;
} while ($a > 0);
Result