<html> <body> <ul> <?php $nr=0; do { echo " <li>Number $nr</li>"; $nr=$nr+1; } while($nr<10) ?> </ul> </body> </html>