Hi, I'm trying to create a php class that creates a database backup but the result is an empty file.
Here is my code so far:
Note: The uploadBackup() method is not ready yet, I'm still trying to figure out the createbackup() method...
<?phpclass dropboxbackup{ // temp directiry public $tempDir; // MySQL DB connection data (username, password, database, host and prefix) private $user; private $password; private $dbName; private $dbHost; //DropBox Information private $dropbox_user; private $dropbox_pass; private $dropbox_loc;