Correcting teacher:查无此人
Correction status:qualified
Teacher's comments:下次多手写点,手写是为了让你练习记录的。
1.POST传值
HTML代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>POST发送数据</title> </head> <body> <form action="form.php" method="post"> <p><label for="title">标题</label> <input type="text" name="title"> </p> <p><label for="content">内容</label> <textarea name="content" rows="10" cols="30"></textarea> </p> <p> <button>提交</button> </p> </form> </body> </html>
点击 "运行实例" 按钮查看在线实例
PHP代码:
<?php $t=$_POST['title']; $c=$_POST['content']; echo '提交成功','<br>'; echo '标题:',$t,'<br>'; echo '内容',$c;
点击 "运行实例" 按钮查看在线实例
手写核心代码: