Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <?php $i=0; foreach($data as $file => $contents):?>
  2. <tr>
  3. <td style="vertical-align:top">
  4. <?php if(isset($contents['image'])):?><img src="data:image/jpg;base64,<?=$contents['image']?>"/>
  5. <?php endif; ?>
  6. </td>
  7. <td style="vertical-align:top">
  8. <?=$contents['name']?>
  9. </td>
  10. <td style="vertical-align:top">
  11. <div class="line">
  12. <a class="button submit-btn margin-bottom" href="ftp://ftp.untergrund.net/users/ravebusters/downloads/<?=$paths[$usepath]?>/<?=$contents['file']?>" download">DOWNLOAD</a>
  13. </div>
  14. </td>
  15. <td style="vertical-align:top">
  16. <?php if(isset($contents['text'])): ?>
  17. <?=nl2br($contents['text'])?>
  18. <?php else: ?>
  19. No description found yet.
  20. <?php endif; ?>
  21. </td>
  22. <td style="vertical-align:top; background:#223441;"><div class="ui360 ui360-vis"><a title="LISTEN NOW" href="ftp://ftp.untergrund.net/users/ravebusters/downloads/<?=$paths[$usepath]?>/<?=$contents['file']?>"></a></div></td>
  23. </tr>
  24. <?php if(++$i > 4) break; endforeach;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement