Skip to content

Instantly share code, notes, and snippets.

@mikemill
Last active August 29, 2015 14:08
Show Gist options
  • Save mikemill/04bbfef2f11b4ca8db23 to your computer and use it in GitHub Desktop.
Save mikemill/04bbfef2f11b4ca8db23 to your computer and use it in GitHub Desktop.
<?php
foreach ($log as $i => $log_item) {
echo $log_item['AuditEntryMessage'];
echo '(', $log_item['Username'], ')';
echo $log_item['AuditEntryMessage'];
if ($i < count($log) - 1) {
echo "\r\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment