创建file1.php文件,设计表单,包含用户名、学号、专业、班级等四方面内容(表单控件
时间: 2023-12-31 12:06:06 浏览: 66
设计一个学生类Student(学生学号、姓名、数学、英语、计算机成绩;)
5星 · 资源好评率100%
好的,以下是file1.php文件的代码,包含用户名、学号、专业、班级等四个表单控件:
```html
<!DOCTYPE html>
<html>
<head>
<title>表单</title>
</head>
<body>
<form method="post" action="">
<label for="username">用户名:</label>
<input type="text" id="username" name="username"><br><br>
<label for="stuid">学号:</label>
<input type="text" id="stuid" name="stuid"><br><br>
<label for="major">专业:</label>
<input type="text" id="major" name="major"><br><br>
<label for="class">班级:</label>
<input type="text" id="class" name="class"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
在该表单中,我们使用了四个文本框,分别对应了用户名、学号、专业和班级四个方面的信息。这些文本框的id和name属性分别为username、stuid、major和class。同时,我们还添加了一个提交按钮,用于提交表单数据。
阅读全文