Advertisement
Guest User

Untitled

a guest
Apr 15th, 2014
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.6.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.06.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function backup_tables($host, $user, $pass, $name, $tables = '*') {
  15. if ($tables == '*') {
  16. $tables = array( );
  17. $result = mysql_query( 'SHOW TABLES' );
  18.  
  19. while ($row = mysql_fetch_row( $result )) {
  20. $tables[] = $row[0];
  21. }
  22. }
  23.  
  24.  
  25. foreach ($tables as $table) {
  26. $result = mysql_query( 'SELECT * FROM `' . $table . '`' );
  27. $num_fields = mysql_num_fields( $result );
  28. ............................................................
  29. ................................
  30. ...............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement