Haha
<?php
$row= Array(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20);
echo '<p>';
for($i=6;( isset($row[$i]) && $i < 16 );$i++){ // Start a loop at 6, and continue until $row[$i] no longer exists
echo nl2br($row[$i] ). '<br>'; // Echo the current data
} // and continue again at the top of the loop.
echo '</p>';
?>