📄 fill.tb.dungeons.wotlk.php
字号:
<?php
include "conn.inc.php";
$dinsert = "INSERT INTO dungeons
(dungeonname, dungeonabbrev)
VALUES
('Utgarde Keep', 'UK'),
('Utgarde Pinnacle', 'UP'),
('The Nexus' , 'Nexus'),
('The Occulus' , 'Occulus'),
('Caverns of Time: The Culling of Stratholme' , 'CoT Strat'),
('Halls of Lightning' , 'HoL'),
('Halls of Stone' , 'HoS'),
('Gundrak' , 'Gundrak'),
('Drak\'Tharon Keep' , 'DtK'),
('Azjol-Nerub' , 'AN'),
('Ahn\'kahet: The Old Kingdom' , 'AK OK'),
('The Violet Hold' , 'VH'),
('Naxxramas' , 'Naxx'),
('Eye of Eternity' , 'EoE Malygos'),
('Obsidian Sanctum' , 'OS Sarth'),
('Vault of Archavon' , 'VoA')
";
$results = mysql_query($dinsert) or die (mysql_error());
echo "dungeons in db<br />";
//------------------
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -