Last active
August 29, 2015 14:08
-
-
Save mikemill/04bbfef2f11b4ca8db23 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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