Ignore:
Timestamp:
Aug 11, 2007, 12:04:22 AM (17 years ago)
Author:
george
Message:

Sjednocení parametrů připojení k databázi do jednoho souboru config.php.
Přepsání všech cest na relativní.
Přidání parametru BaseUrl do souboru config.php.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • administrace/george/optimalize.php

    r5 r11  
    11<?php
    22include_once('db.php');
     3include_once('../../config.php');
    34
    45function OptimalizeDb($Database, $Op)
    56{
     7  global $DatabaseHost, $DatabaseUser, $DatabasePassword;
    68  echo('Databáze '.$Database.'...<br><table>');
    7   DB_Init('localhost', 'root', 'gurubashi', $Database);
     9  DB_Init($DatabaseHost, $DatabaseUser, $DatabasePassword, $Database);
    810  DB_Query('SHOW TABLES');
    911  while($Table = DB_Row())
Note: See TracChangeset for help on using the changeset viewer.