<html> <head> </head> <body> <ul> <?php $i = 1; do { echo "<li>This is item number $i.</li>"; $i = $i + 1; } while( $i < 5 ); ?> </ul> </body></html>