Changeset 532 for trunk/pages/links.php
- Timestamp:
- Mar 24, 2009, 10:39:53 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/pages/links.php
r405 r532 1 <h3>Odkazy :</h3> 2 <a href="http://wow.hisgrak.cz" target="_blank" title="Česká fansite o hře World of Warcraft :: Powered by Hisgrak.cz"><img src="http://wow.hisgrak.cz/soubory/wow_ico.gif" border="0"></a> 3 <a href="http://tajemno.net/" target="_blank" title="Fantasy portál"><img src="http://tajemno.net/rek/aphrael1.gif" border="0"></a> 1 <?php 2 3 echo('<h2 align="center">Odkazy:</h2>'); 4 5 $Links = array 6 ( 7 array('URL' => 'http://wow.hisgrak.cz/', 'Description' => 'České informace o WoW'), 8 array('URL' => 'http://wow.vigudes.cz', 'Description' => 'České informace o WoW'), 9 array('URL' => 'http://wow.herniweb.cz/', 'Description' => 'České informace o WoW'), 10 array('URL' => 'http://www.worldofwarcraft.com/', 'Description' => 'Oficiální stránky hry World of Warcraft'), 11 array('URL' => 'http://www.wow-europe.com/', 'Description' => 'Oficiální stránky hry World of Warcraft pro Evropu'), 12 array('URL' => 'http://www.wowstatus.net/serverlist.php', 'Description' => 'Mezinárodní seznam free WoW serverů'), 13 array('URL' => 'http://servery.wowresource.eu/', 'Description' => 'Český seznam serverů free WoW serverů'), 14 array('URL' => 'http://www.wowresource.eu/', 'Description' => 'Diskusní fórum o WoW a free serverech'), 15 array('URL' => 'http://wiki.wowresource.eu/', 'Description' => 'Wiki stránky o WoW emulaci'), 16 array('URL' => 'http://wow.allakhazam.com/', 'Description' => 'Databáze informací o světě WoW'), 17 array('URL' => 'http://thottbot.com/', 'Description' => 'Databáze informací o světě WoW'), 18 array('URL' => 'http://www.wowhead.com/', 'Description' => 'Databáze informací o světě WoW'), 19 array('URL' => 'http://wowwiki.com/', 'Description' => 'Anglické wiki stránky o světě WoW'), 20 array('URL' => 'http://www.gotwow.ic.cz/', 'Description' => 'Historie emulace WoW'), 21 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'), 23 array('URL' => 'http://wowpreklad.zdechov.net/', 'Description' => 'Český překlad WoW'), 24 ); 25 26 foreach($Links as $Link) 27 { 28 echo('<a href="'.$Link['URL'].'" target="_blank" title="'.$Link['Description'].'">'.$Link['URL'].'</a> - '.$Link['Description'].'<br />'); 29 } 30 31 ?>
Note:
See TracChangeset
for help on using the changeset viewer.