Changeset 4 for trunk/index.php


Ignore:
Timestamp:
Jul 27, 2016, 11:28:39 PM (8 years ago)
Author:
chronos
Message:
  • Fixed: Use table prefix from Database class.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        11config.php
         2.buildpath
         3.project
         4.settings
  • trunk/index.php

    r3 r4  
    77<head>
    88<title>Osobní stránky Jiřího Hajdy</title>
    9 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">
     9<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    1010</head>
    1111<body style="font-family: Arial;">
     
    1414<table>';
    1515
    16 $DbResult = $Database->select($DB_Prefix.'projekty', '*', 'finished = 0');
     16$DbResult = $Database->select('projekty', '*', 'finished = 0');
    1717while($Row = $DbResult->fetch_assoc())
    1818{
     
    2929<table>';
    3030
    31 $DbResult = $Database->select($DB_Prefix.'projekty', '*', 'finished = 1');
     31$DbResult = $Database->select('projekty', '*', 'finished = 1');
    3232while($Row = $DbResult->fetch_assoc())
    3333{
Note: See TracChangeset for help on using the changeset viewer.