blob: 9863e2de6db13f1defba5d7129be17a12d3aef28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
/**
* Cinisis - Isis db reading tool.
*/
// Import requisites.
require_once '../index.php';
// Draw the document.
$display = new CinisisDisplayHelper('Database audit');
// Get a db instance.
$isis = new IsisAudit();
// Setup database and entry number.
if ($isis) {
// Run audit.
$result = $isis->run();
// Format output.
$display->pre(print_r($result));
}
$display->footer();
|