submitCSS.php 447 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. function write_ini_file($content, $path) {
  3. if (!$handle = fopen($path, 'w')) {
  4. return false;
  5. }
  6. $success = fwrite($handle, $content);
  7. fclose($handle);
  8. return $success;
  9. }
  10. if ($_POST['submit'] == "editCSS" ) {
  11. $text = $_POST["css-show"];
  12. write_ini_file($text, "custom.css");
  13. }
  14. ?>
  15. <script>window.top.location = window.top.location.href.split('#')[0];</script>