表单
php是表单预处理语言,那么表单你肯定得懂吧。
不然处理个鬼。
<html> <head> <title>表单</title> </head> <body> <from action="要处理此表单的脚本文件" method="请求方法"> Username:<input type="text"><br> Password:<input type="password"><br> <input type="submit" value="Login"> </form> </body> </html>