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;
运行实例 »
点击 "运行实例" 按钮查看在线实例
手写核心代码: