<?php $count = 1; do { echo "Count is $count\n"; $count++; } while ($count <= 5); ?>
Click Run to execute this code.