Hi Paul,
I have been using this great script for a while now. I recently added a function in the cron to delete all backups that are 3 days or older when it performs a backup, because I had to constantly manually delete old files.
I placed it right after
echo $mysqlBackup->STATUS;
What I'd like to know is how to determine a successful status from the script. In case of failure I don't want to run the delete. Something like
if($status == 'success')
{
// my stuff here
}
Thanks
|