Changeset 82 for db/index.php


Ignore:
Timestamp:
Sep 29, 2007, 8:25:17 PM (17 years ago)
Author:
hosiplan
Message:

úprava návodu na event na šplhání
A taky bylo zase něco málo vylepšeno a přidáno v prohlížeči databáze

File:
1 edited

Legend:

Unmodified
Added
Removed
  • db/index.php

    r77 r82  
    55
    66/* =========== Config =========== */
     7  if( !file_exists('./config.php') ){ exit; };
    78  require_once './config.php';
    8 
     9 
    910/* =========== Připojení k Databázi =========== */
    1011
    11   @mysql_connect( $Config['Database']['Host'], $Config['Database']['User'], $Config['Database']['Password'] )
     12  @mysql_connect( $Config['DB_read']['Database']['Host'], $Config['DB_read']['Database']['User'], $Config['DB_read']['Database']['Password'] )
    1213    OR DIE("<p>Vyskytla se chyba a nelze se připojit k databázi.<br> Zkuste to později.</p>");
    13   mysql_select_db($Config['DB_read']['Database'])
    14     OR DIE("<p>Nepodařilo se nastavit pracovní databázi ".$Config['DB_read']['Database']."!</p>");
    15   mysql_query("SET NAMES ".$Config['DB_read']['Charset']);
     14  @mysql_select_db($Config['DB_read']['DB_read']['Database'])
     15    OR DIE("<p>Nepodařilo se nastavit pracovní databázi ".$Config['DB_read']['DB_read']['Database']."!</p>");
     16  @mysql_query("SET NAMES ".$Config['DB_read']['DB_read']['Charset']);
    1617
    1718/* =========== Speciální FCE =========== */
     
    2021    $str = @str_replace("\r","",$str);
    2122    return $str;
     23    };
     24
     25  function AbsCheck($int){ return (abs($int)==$int)? true : false; };
     26 
     27  function CheckQuestRace(){
     28   
    2229    };
    2330
     
    108115    /* =========== GET hodnoty =========== */
    109116    $id = $_GET['id']; // tady získá id z adresy
     117    $q = addslashes($_GET['q']);
    110118    $limit = $_GET['list']; // tady získá list z adresy
    111119      if( is_numeric($limit) == FALSE ){ unset($limit); };
    112120      if( $limit < 1 OR empty($limit) ){ $limit = 1; };
    113121    $quest = addslashes($_GET['quest']);
     122      if( is_numeric($quest) == FALSE ){ unset($quest); };
     123    $creature = addslashes($_GET['creature']);
     124      if( is_numeric($creature) == FALSE ){ unset($creature); };
    114125    $lvl_d = addslashes($_GET['lvl_d']);
    115126      if( is_numeric($lvl_d) == FALSE ){ unset($lvl_d); };
Note: See TracChangeset for help on using the changeset viewer.