Correcting teacher:天蓬老师
Correction status:qualified
Teacher's comments:人类最烦做重复的工作, 而电脑却恰 恰 相反, 所以循环是非常重要的
1. 练习get传值
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>get</title> </head> <body> <form action="" method="get"> <label for="name">用户名:</label> <input type="text" id="name" name="name" value=""> <label for="password">密码:</label> <input type="password" id="password" name="password" value=""> <br/> <button>登录</button> </form> </body> </html> <?php echo '用户名:'.$_GET['name']; echo '<br/>'; echo '密码:'.$_GET['password']; ?>
点击 "运行实例" 按钮查看在线实例
效果图
2. 练习流程控制 (手写)
3. 练习计数循环 (手写)
手写代码