So when the countdown is compelted you want to reload the page and then start the backup?
If not, then you don't need to refresh. Just have PHP say something like:
PHP Code:
if( $countdownMinutes == 0 && $countdownSeconds == 0 ){
echo( "Backup Started!" );
exit();
}
If you still want to do the refresh, see my previous post for the code.