Changeset 609 for trunk/pages/links.php
- Timestamp:
- Aug 7, 2009, 10:03:50 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/pages/links.php
r532 r609 5 5 $Links = array 6 6 ( 7 array('URL' => 'http://wow.hisgrak.cz/', 'Description' => 'České informace o WoW'),8 7 array('URL' => 'http://wow.vigudes.cz', 'Description' => 'České informace o WoW'), 9 8 array('URL' => 'http://wow.herniweb.cz/', 'Description' => 'České informace o WoW'), … … 20 19 array('URL' => 'http://www.gotwow.ic.cz/', 'Description' => 'Historie emulace WoW'), 21 20 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 21 array('URL' => 'http://wowpreklad.zdechov.net/', 'Description' => 'Český překlad WoW'), 24 22 ); 25 23 24 echo('<ul>'); 26 25 foreach($Links as $Link) 27 26 { 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>'); 29 28 } 29 echo('</ul>'); 30 30 31 31 ?>
Note:
See TracChangeset
for help on using the changeset viewer.