header('Message Index'); $t->tag('h1', array(), "Message Index"); $t->openTag('table'); $t->row(array('From','Subject', 'Date')); foreach ($messages as $date => $message_array) { foreach ($message_array as $message) { $url = $t->url('messages/'.$message['id'].'/'); $subject = htmlentities($message['subject']); $from = htmlentities($message['from']); $date_str = str_replace(' ', ' ', date('Y-m-d H:i:s',$date)); $t->row(array( $t->link($url, $from , true), $t->link($url, $subject , true), $t->link($url, $date_str, true), )); } } $t->closeTag('table'); $t->footer();