Guest User

Untitled

a guest
Mar 7th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. $host= 'localhost';
  4. $user= '';
  5. $pass= '';
  6. $db= '';
  7.  
  8. // Création de la sauvegarde dans un fichier zip
  9. system(sprintf(
  10. 'mysqldump --no-tablespace --opt -h%s -u%s -p"%s" %s | gzip > %s/dumpDB.sql.gz',
  11. $host,
  12. $user,
  13. $pass,
  14. $db,
  15. getenv('DOCUMENT_ROOT')
  16. ));
  17. echo '+DONE';
  18. ?>
Add Comment
Please, Sign In to add comment