2
0

cms.sftp-delete-file-local.php 205 B

12345678910
  1. <?php
  2. if(core::ifPost("from")){
  3. if (sftp::deleteFileToRemote(core::getPost("file"))) {
  4. unlink(SFTP_LOCAL.core::getPost("file"));
  5. }
  6. }
  7. header("Location: /proweb-export-csv.html");
  8. exit();