Changeset 609 for trunk/pages/links.php


Ignore:
Timestamp:
Aug 7, 2009, 10:03:50 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Stránky přizpůsobeny pro podporu více světů. Doplněna stránka seznamu světů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pages/links.php

    r532 r609  
    55$Links = array
    66(
    7   array('URL' => 'http://wow.hisgrak.cz/', 'Description' => 'České informace o WoW'),
    87  array('URL' => 'http://wow.vigudes.cz', 'Description' => 'České informace o WoW'),
    98  array('URL' => 'http://wow.herniweb.cz/', 'Description' => 'České informace o WoW'),
     
    2019  array('URL' => 'http://www.gotwow.ic.cz/', 'Description' => 'Historie emulace WoW'),
    2120  array('URL' => 'http://www.zdechov.net/', 'Description' => 'Komunitní počítačová síť, ve které je provozován tento server'),
    22   array('URL' => 'http://game.zdechov.net/', 'Description' => 'Rozcestník tohoto herního serveru'),
    2321  array('URL' => 'http://wowpreklad.zdechov.net/', 'Description' => 'Český překlad WoW'),
    2422);
    2523
     24echo('<ul>');
    2625foreach($Links as $Link)
    2726{
    28   echo('<a href="'.$Link['URL'].'" target="_blank" title="'.$Link['Description'].'">'.$Link['URL'].'</a> - '.$Link['Description'].'<br />');
     27  echo('<li><a href="'.$Link['URL'].'" target="_blank" title="'.$Link['Description'].'">'.$Link['URL'].'</a> - '.$Link['Description'].'</li>');
    2928}
     29echo('</ul>');
    3030
    3131?>
Note: See TracChangeset for help on using the changeset viewer.