code.php 342 B

12345678910111213141516
  1. <?php
  2. if($file->type==='php')
  3. {
  4. echo '<div class="content">';
  5. highlight_string($file->content);
  6. echo '</div>';
  7. }
  8. elseif(in_array($file->type,array('txt','js','css','sql')))
  9. {
  10. echo '<div class="content">';
  11. echo nl2br($file->content);
  12. echo '</div>';
  13. }
  14. else
  15. echo '<div class="error">Preview is not available for this file type.</div>';
  16. ?>