16 lines
278 B
PHP
16 lines
278 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Dbbackup extends CI_Controller {
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
public function index() {
|
|
$this->myaccounts->backupDatabase();
|
|
|
|
}
|
|
}
|