<?php
while ($expr) {
    // structure body
}
?>

<?php
do {
    // structure body;
} while ($expr);

?>