Hi, I'm new to php so I hope this makes sense... I have created a flat db for a small news section on my site, which seems to be working fine apart from the latest news always goes to the bottom. Is there an easy way to reverse the order that the content is printed to the screen? Thank you in advance for any help. ////////////My code <?php $db = file('includes/db/pagedata.db'); foreach ($db as $key => $value){ $value = trim($value); list($title, $news) = explode('|', $value); ?> <?php print $title; ?> <?php print $news ?>