看看我写的代码哪里错了,不能单选变多选,重置没反应
<HTML>
<head><title>兴趣调查表</title></head>
<body>
<from method="post" action="save.php">
<label for="username">姓名:</label>
<input type="text" name="" value="" id="username"/>
<br>
<label>性别:</label>
<select>
<option value="男" selected="selected">男</option>
<option value="女">女</option>
</select>
<br/>
<label>年龄:</label>
<input type="radio" name="" value="12-16"/>12-16岁
<input type="radio" name="" value="17-21"/>17-21岁
<input type="radio" name="" value="22-26"/>22-26岁
<br/>
<label>兴趣:</label>
<input type="radio" name="" value="篮球"/>篮球
<input type="radio" name="" value="跑步"/>跑步
<input type="radio" name="" value="游泳"/>游泳
<input type="radio" name="" value="看书"/>看书
<label for="qita">其他</label>
<input type="text" name="" value="" id="qita"/>
<br/>
平时运动周期:
<input type="radio" name="" value="每天"/>每天
<input type="radio" name="" value="1-2天"/>1-2天
<input type="radio" name="" value="3-4天"/>3-4天
<input type="radio" name="" value="5-6天"/>5-6天
<br/>
<input type="reset" value="重置"/>
<input type="submit" value="提交"/>
</from>
</body>
</HTML>