foreach ($items as $item) {
    echo $item;
}

// Using for loop
for ($i = 0; $i < count($items); $i++) {
    echo $items[$i];
}