Guest User

Untitled

a guest
Feb 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php while($row = $retval->fetch_assoc()) {
  2. if($row['banner'] == null) {
  3. $row['banner'] = 'Console';
  4. }
  5. // <<-----------------Ban Date Converter------------>> //
  6. $timeEpoch = $row['time'];
  7. $timeConvert = $timeEpoch / 1000;
  8. $timeResult = date('F j, Y, g:i a', $timeConvert);
  9. // <<-----------------Expiration Time Converter------------>> //
  10. $expiresEpoch = $row['expires'];
  11. $expiresConvert = $expiresEpoch / 1000;
  12. $expiresResult = date('F j, Y, g:i a', $expiresConvert);
  13. ?>
Add Comment
Please, Sign In to add comment