|
Ernest |
Raoul |
Carlo |
Lucian |
|
Andrew |
Louis |
Oscar |
Rodolf |
|
Henrik |
Fidel |
Patrick |
Phillip |
|
Olivier |
Raoul II |
Nils |
Anthony |
// This include needs the variable $show_nbr_of_news to be set to // the number of news that should be listed. reset($news); $array_length = count ($news); if ($show_nbr_of_news > $array_length) $show_nbr_of_news = $array_length; // avoids trouble $current_news=current($news); for ($i = 1; $i <= $show_nbr_of_news ; $i++) { if (isset($current_news)) {?>
$current_news=next($news); }} ?>
// This include needs the variable $show_nbr_of_editorials to be set to
// the number of editorials that should be listed.
reset($editorials);
$array_length = count ($editorials);
if ($show_nbr_of_editorials > $array_length) $show_nbr_of_editorials = $array_length; // avoids trouble
$current_editorial=current($editorials);
for ($i = 1; $i <= $show_nbr_of_editorials ; $i++) { ?>
$current_editorial=next($editorials); } ?>