Changeset 3 for trunk/index.php
- Timestamp:
- Jul 27, 2016, 8:36:02 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r1 r3 1 <?php 2 include_once('db.php'); 1 <?php 3 2 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 ?> 3 include_once('global.php'); 13 4 14 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">5 $Output = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 15 6 <html> 16 7 <head> 17 <title>Osobní stránky Ji øího Hajdy</title>8 <title>Osobní stránky Jiřího Hajdy</title> 18 9 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"> 19 10 </head> 20 11 <body style="font-family: Arial;"> 21 12 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'); 17 while($Row = $DbResult->fetch_assoc()) 27 18 { 28 echo('<tr><td>'.19 $Output .= '<tr><td>'. 29 20 '<a href="'.$Row['link'].'"><img src="images/nahledy/'.$Row['image'].'_mini.png" alt="Náhled"></a>'. 30 21 '</td><td valign="top">'. 31 22 '<a href="'.$Row['link'].'">'.$Row['title'].'</a><br>'.$Row['description']. 32 '</td></tr>' );23 '</td></tr>'; 33 24 } 34 echo('</table>');25 $Output .= '</table>'; 35 26 36 27 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'); 32 while($Row = $DbResult->fetch_assoc()) 42 33 { 43 echo('<tr><td>'.34 $Output .= '<tr><td>'. 44 35 '<a href="'.$Row['link'].'"><img src="images/nahledy/'.$Row['image'].'_mini.png" alt="Náhled"></a>'. 45 36 '</td><td valign="top">'. 46 37 '<a href="'.$Row['link'].'">'.$Row['title'].'</a><br>'.$Row['description']. 47 '</td></tr>' );38 '</td></tr>'; 48 39 } 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 44 echo($Output);
Note:
See TracChangeset
for help on using the changeset viewer.