Hi guys,
how can I tell when i've reached the last item in a foreach()?
Here's what I mean...
<?
$msg=" item";
foreach($something as $val) {
  print($msg);
  if (is_last_item()) {
    print("Last".$msg);
  }
}
Hope you see what I mean
Nick