save.php 325 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. require_once 'includes/common.inc.php';
  3. $page['css'][] = 'frame';
  4. $page['js'][] = 'frame';
  5. require 'includes/header.inc.php';
  6. ?>
  7. <h2>Saving</h2>
  8. ...
  9. <?php
  10. // Flush everything so far cause the next command could take some time.
  11. flush();
  12. $redis->save();
  13. ?>
  14. done.
  15. <?php
  16. require 'includes/footer.inc.php';
  17. ?>