The PHP Do While, just a quick post so I can find this later without Googling…

<?
$i = 0;
do
{
// do something
}
while ($i > 0);
i++;
?>

MORE
PHP Do While on PHP.net