-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathzonelist.php
38 lines (38 loc) · 2.76 KB
/
zonelist.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
$Title="Zone List";
include('./includes/config.php');
include($includes_dir.'constantes.php');
include($includes_dir.'headers.php');
include($includes_dir.'mysql.php');
include($includes_dir.'functions.php');
CreateToolTip("kunark", '<center><img src="http://media.giantbomb.com/uploads/0/1593/370230-everquest_ruins_of_kunark_large.jpg"></center>');
CreateToolTip("velious", '<center><img src="http://upload.wikimedia.org/wikipedia/en/d/d5/EverQuest_-_The_Scars_of_Velious_Coverart.png"></center>');
CreateToolTip("luclin", '<center><img src="http://upload.wikimedia.org/wikipedia/en/1/19/EverQuest_-_The_Shadows_of_Luclin_Coverart.png"></center>');
CreateToolTip("pop", '<center><img src="http://cdn.wikimg.net/strategywiki/images/thumb/4/45/EverQuest_The_Planes_of_Power_cover_art.jpg/250px-EverQuest_The_Planes_of_Power_cover_art.jpg"></center>');
CreateToolTip("loy", '<center><img src="http://upload.wikimedia.org/wikipedia/en/3/35/EverQuest_-_The_Legacy_of_Ykesha_Coverart.png"></center>');
echo '<center>';
echo '<a href=static/antonica.php>Antonica</a><br> ';
echo '<a href=static/odus.php>Odus</a><br> ';
echo '<a href=static/faydwer.php>Faydwer</a><br> ';
echo '<a href=static/planes.php>Old World Planes</a><br> ';
echo '<a href=static/kunark.php id="kunark">Ruins of Kunark</a><br> ';
echo '<a href=static/velious.php id="velious">Scars of Velious</a><br> ';
echo '<a href=static/luclin.php id="luclin">Shadows of Luclin</a><br> ';
echo '<a href=static/power.php id="pop">The Planes of Power</a><br> ';
echo '<a href=static/ykesha.php id="loy">The Legacy of Ykesha</a><br> ';
echo '<a href=static/ldon.php>The Lost Dungeons of Norrath</a><br> ';
echo '<a href=static/god.php>The Gates of Discord</a><br> ';
echo '<a href=static/omens.php>The Omens of War</a><br> ';
echo '<a href=static/don.php>Dragons of Norrath</a><br> ';
echo '<a href=static/dod.php>Depths of Darkhollow</a><br> ';
echo '<a href=static/por.php>Prophecy of Ro</a><br> ';
echo '<a href=static/tss.php>The Serpent\'s Spine</a><br> ';
echo '<a href=static/tbs.php>The Buried Sea</a><br> ';
echo '<a href=static/sof.php>Secrets of Faydwer</a><br> ';
echo '<a href=static/sod.php>Seeds of Destruction</a><br> ';
echo '<a href=static/uf.php>Underfoot</a><br> ';
echo '<a href=static/hot.php>House of Thule</a><br> ';
echo '<a href=static/voa.php>Veil of Alaris</a><br> ';
echo '</center>';
include($includes_dir."footers.php");
?>