<?php

$tar= 12;
do  
{ 
$tar++;
echo $tar;
}
while 

($tar<12);


?>