Changeset 445 for beta/inc/html.php


Ignore:
Timestamp:
Feb 22, 2009, 5:46:24 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Skript pro import financí a aktualit ze starého webu.
  • Opraveno: Ukázkový skript db_sample.php nebyl řádné upravený!
  • Opraveno: U zobrazování aktualit se všude zobrazoval jako autor Zork.
  • Upraveno: Javascript kódy umísťujte do souboru styles/global.js.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • beta/inc/html.php

    r405 r445  
    6262  <meta name=\"keywords\" content=\"".$this->CfgChck("keywords")."\" />
    6363  <link rel=\"stylesheet\" type=\"text/css\" href=\"styles/style.css\" />
     64  <script type=\"text/javascript\" src=\"styles/global.js\"></script>
    6465  <!--[if IE]><link rel=\"stylesheet\" type=\"text/css\" href=\"styles/ie.css\" /><![endif]-->
    6566  </head>
     
    207208      public function ShowNews ($kategorie)
    208209      {
     210                global $db_webu;
     211               
    209212        if ($kategorie == "all")
    210213        {
     
    215218          $where = "WHERE `category` = '".$kategorie."'";
    216219        }
    217         $this -> db -> select_db("wow_web");
     220        $this -> db -> select_db($db_webu);
    218221        $sql = $this -> db -> query("SELECT * FROM `articles`".$where."ORDER BY `date` DESC;");
    219222        if ($sql -> num_rows > 0)
     
    258261              <tr>
    259262                <td>Sekce : <a href=\"?page=".$link."\">".$cat."</a></td>
    260                 <td>Zork</td>
     263                <td>".$row["autor"]."</td>
    261264              </tr>
    262265            </table>
Note: See TracChangeset for help on using the changeset viewer.