example.php 722 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <?php
  7. foreach($css_files as $file): ?>
  8. <link type="text/css" rel="stylesheet" href="<?php echo $file; ?>" />
  9. <?php endforeach; ?>
  10. <?php foreach($js_files as $file): ?>
  11. <script src="<?php echo $file; ?>"></script>
  12. <?php endforeach; ?>
  13. </head>
  14. <body>
  15. <div>
  16. <a href='<?php echo site_url('/admin/deptos')?>'>Datos Departamento</a> |
  17. <a href='<?php echo site_url('/admin/distribuidoras')?>'>Distribuidoras</a> |
  18. <a href='<?php echo site_url('/admin/datospanel')?>'>Datos Panel</a> |
  19. </div>
  20. <div style='height:20px;'></div>
  21. <div>
  22. <?php echo $output; ?>
  23. </div>
  24. </body>
  25. </html>