Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1.  
  2. <?php < ?
  3. }
  4. elseif (isset($_GET['closed']))
  5. { ?> <?php
  6. foreach($tickets as $key => $value)
  7. { ?> <div class="panel panel-info text-left"><div class="panel-heading"><h4><?php echo htmlspecialchars($value['title']) ?></h4></div><div class="panel-body"> <?php
  8. foreach(htmlspecialchars($value['messages']) as $key2 => $value2)
  9. { ?> <div class="note note-<?php echo ($user['steamid'] == $value2['user']) ? 'info' : 'warning' ?> bubble"><?php echo htmlspecialchars($value2['message']) ?></div> <?php
  10. } ?> </div></div> <?php
  11. } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement