Legend:
- Unmodified
- Added
- Removed
-
index.php
r2 r3 3 3 include('config.php'); 4 4 session_start(); 5 include(' data_types.php');5 include('base.php'); 6 6 $Database = new Database($Config['Database']['Host'], $Config['Database']['User'], $Config['Database']['Password'], $Config['Database']['Database']); 7 7 $Database->Prefix = $Config['Database']['Prefix']; … … 14 14 '<script type="text/javascript" src="global.js"></script>'. 15 15 '<title>IS</title> 16 </head><body> ';16 </head><body><table class="base"><tr><td class="menu">'; 17 17 18 18 LoadListDefinition(); 19 $Output .= $Output; 20 $Output .= TableList(1); 21 $Output .= TableList(0); 22 $Output .= '</td><td class="main">'; 23 $Output .= 'dd<br /><div>'.Output().'</div><br />dd'; 24 $Output .= '</td></tr></table></body></html>'; 19 25 echo($Output); 20 echo(TableList());21 echo(Output());22 echo('</body></html>');23 26 //echo(phpinfo()); 24 27 ?>
Note:
See TracChangeset
for help on using the changeset viewer.