diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -23,6 +23,16 @@ spl_autoload_register("cinisis_autoload"); // Get a db instance. $isis = new CinIsis(); +?> + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=cp850" /> + </head> + <body> +<?php + // Test connection. if ($isis->db) { $result = $isis->db->read(1); @@ -36,3 +46,4 @@ if ($isis->db) { } ?> +</body> |