aboutsummaryrefslogtreecommitdiff
path: root/tests/test.php
blob: 5a96e3be5e44aff3ba15fc4b4657da5e72ddf37c (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
25
26
27
28
29
30
31
32
33
<?php
/**
 * Cinisis - Isis db reading tool.
 */
?>

<?php
// Import requisites.
require_once '../index.php';
?>

<?php
// Draw the document.
$display = new CinisisDisplayHelper('Isis Test');

// Get a db instance.
$isis = new CinisisDb();

// Test connection.
if ($isis->db) {
  $result  = $isis->db->read(1);
  $entries = $isis->db->entries();

  // Format output.
  echo '<pre>';
  echo "Connection test:\n";
  echo "Rows: $entries\n";
  print_r($result);
  echo '</pre>';
}

?>
</body>