Web >> Development >> PHP >> Syntax >> do while >> What is the syntax of a do..while control structure

Example <?php $i = 0; do { echo $i; } while ($i > 0); ?>