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