⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 alt_new.form.inc.php

📁 A website for keeping track of wishes for your character in WoW Users are able to make a user accoun
💻 PHP
字号:
<form action="alt_new.php" method="post">
    Alt name: <input type="text" name="altname" value=""><br />
    Alt realm:
    <select name="altrealm">               
<?php
        $realmquery = "SELECT realmname FROM realms;"; //where region=userregion
        $realmresults = mysql_query($realmquery) or die(mysql_error());
                
		while ( $row = mysql_fetch_assoc($realmresults))
        {
            foreach ($row as $val1)
            {
                echo "<option value=\"";
                echo $val1; //internal ref
                echo "\">";
                echo $val1; //display text could have realm name + pvp/rp + region
                echo "</option>";
            }
        }
?>
    </select>
    <br />
	<!--in future: grab this from armory -->	
    Faction: &nbsp;
		<input type="radio" name="faction" value="1">Alliance &nbsp;
		<input type="radio" name="faction" value="2">Horde
	<br />
	<br />
    <input type="submit" name="submit" value="Create"> &nbsp; 
    <input type="reset" value="Clear">
</form>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -