message.php 686 B

123456789101112131415161718192021222324252627282930
  1. <html>
  2. <head>
  3. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  4. <meta http-equiv="content-type" content="text/html;charset=utf-8">
  5. <title><?php echo Qii::i('Show Message'); ?></title>
  6. <?php
  7. include(dirname(__FILE__) . DS . 'style.php');
  8. ?>
  9. </head>
  10. <body>
  11. <h1><font color="red"><?php echo Qii::i('Show Message'); ?></font></h1>
  12. <p><?php echo Qii::i('The page you are looking at is being generated dynamically by Qii'); ?></p>
  13. <ul>Messages:
  14. <?php
  15. foreach ($message AS $error) {
  16. ?>
  17. <li><code><?= $error; ?></code></li>
  18. <?php
  19. }
  20. ?>
  21. </ul>
  22. <?php
  23. include(dirname(__FILE__) . DS . 'footer.php');
  24. ?>
  25. </body>
  26. </html>