Changeset 6 for global.php
- Timestamp:
- Oct 16, 2007, 10:12:26 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
global.php
r4 r6 2 2 3 3 session_start(); 4 include ('config.php');5 include ('database.php');6 include ('code.php');7 include ('types.php');8 include ('classes.php');9 include ('stat_functions.php');4 include_once('config.php'); 5 include_once('database.php'); 6 include_once('code.php'); 7 include_once('types.php'); 8 include_once('classes.php'); 9 include_once('stat_functions.php'); 10 10 $Database = new Database($Config['Database']['Host'], $Config['Database']['User'], $Config['Database']['Password'], $Config['Database']['Database']); 11 11 $Database->Prefix = $Config['Database']['Prefix']; … … 29 29 30 30 31 function Link($Target, $Title)31 function MakeLink($Target, $Title) 32 32 { 33 33 return('<a href="'.$Target.'">'.$Title.'</a>'); … … 57 57 $Class = $Classes[$ClassName]; 58 58 $Table = array( 59 'Header' => array('Polo ¾ka', 'Hodnota'),59 'Header' => array('Poloka', 'Hodnota'), 60 60 'Rows' => array(), 61 61 );
Note:
See TracChangeset
for help on using the changeset viewer.