$limit = 10;$count = 1;foreach($noticia->fetch_array() as $row) { echo ' <li><a href="' . $row['url'] . '" target="_blank">' . trim($row['text']) . '</a></li>'; $count++; if( $count == $limit ) $break;}