Changeset 3 for trunk/index.php


Ignore:
Timestamp:
Jul 27, 2016, 8:36:02 PM (8 years ago)
Author:
chronos
Message:
  • Modified: Updated to work with PHP7. Old database class replaced by Common package.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r1 r3  
    1 <?php
    2 include_once('db.php');
     1<?php
    32
    4 function IconedLink($Link, $Text)
    5 {
    6   $Extension = substr($Link, strrpos($Link, '.')+1);
    7   //echo($Extension);
    8   $Icon = '<img src="../images/icons/'.$Extension.'.gif" alt="'.$Extension.'"> ';
    9   return($Icon.'<a href="'.$Link.'">'.$Text.'</a>');
    10 }
    11  
    12 ?>
     3include_once('global.php');
    134
    14 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
     5$Output = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    156<html>
    167<head>
    17 <title>Osobní stránky Jiøího Hajdy</title>
     8<title>Osobní stránky Jiřího Hajdy</title>
    189<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">
    1910</head>
    2011<body style="font-family: Arial;">
    2112
    22 <h3>Seznam aktuálních projektù a aktivit:</h3><hr>
    23 <table>
    24 <?php
    25 DB_Select('projekty', '*', 'finished = 0');
    26 while($Row = DB_Row())
     13<h3>Seznam aktuálních projektů a aktivit:</h3><hr>
     14<table>';
     15
     16$DbResult = $Database->select($DB_Prefix.'projekty', '*', 'finished = 0');
     17while($Row = $DbResult->fetch_assoc())
    2718{
    28   echo('<tr><td>'.
     19  $Output .= '<tr><td>'.
    2920  '<a href="'.$Row['link'].'"><img src="images/nahledy/'.$Row['image'].'_mini.png" alt="Náhled"></a>'.
    3021  '</td><td valign="top">'.
    3122  '<a href="'.$Row['link'].'">'.$Row['title'].'</a><br>'.$Row['description'].
    32   '</td></tr>');
     23  '</td></tr>';
    3324}
    34 echo('</table>');
     25$Output .= '</table>';
    3526
    3627
    37 echo('<h3>Seznam ukonèených projektù a aktivit:</h3><hr>
    38 <table>');
    39  
    40 DB_Select('projekty', '*', 'finished = 1');
    41 while($Row = DB_Row())
     28$Output .= '<h3>Seznam ukončených projektů a aktivit:</h3><hr>
     29<table>';
     30
     31$DbResult = $Database->select($DB_Prefix.'projekty', '*', 'finished = 1');
     32while($Row = $DbResult->fetch_assoc())
    4233{
    43   echo('<tr><td>'.
     34  $Output .= '<tr><td>'.
    4435  '<a href="'.$Row['link'].'"><img src="images/nahledy/'.$Row['image'].'_mini.png" alt="Náhled"></a>'.
    4536  '</td><td valign="top">'.
    4637  '<a href="'.$Row['link'].'">'.$Row['title'].'</a><br>'.$Row['description'].
    47   '</td></tr>');
     38  '</td></tr>';
    4839}
    49 echo('</table>');
    50 //echo('<a href="bc_prace">Bakaláøská práce - Vyhodnocování polohy oèní zornice</a>');
    51 ?>
    52  
    53 </body></html>
     40$Output .= '</table>';
     41
     42$Output .= '</body></html>';
     43
     44echo($Output);
Note: See TracChangeset for help on using the changeset viewer.