File indexing completed on 2024-12-22 05:33:22
0001 <?php 0002 include_once("../gfx3/lib.php"); 0003 0004 $main = new EMain(); 0005 $temp = new EStructure(); 0006 0007 $temp->code(); 0008 echo "<p style=\"color:green;\">Working!</p>"; 0009 $temp->insert("corelibs"); 0010 0011 0012 $temp->code(); 0013 $db = new EDatabase(); 0014 if($db->status()==0){ 0015 echo "<p style=\"color:green;\">Working!</p>"; 0016 } elseif($db->status()==1) { 0017 echo "<p style=\"color:red;\">No database found!</p>"; 0018 } else { 0019 echo "<p style=\"color:red;\">Connection refused!</p>"; 0020 } 0021 $temp->insert("database"); 0022 0023 0024 $temp->code(); 0025 echo "<p style=\"color:green;\">Working!</p>"; 0026 $temp->insert("templates"); 0027 0028 ?>