在php获取表单数据有专用的命令,$_POST[]就是这个函数了,下面来看我们一个简单的实例:
<?php echo 'Hello, ' . $_POST['first_name'] . '!';
输出是来自表单的first_name的值,再看一个复杂一点点的实例:
$_POST['name'] = trim($_POST['name']); if (strlen($_POST['name']) == 0) { $errors[] = "Your name is required."; }
好了,下面做一个关于$_POST的完整实例:
class="brush:php;"><?php $user = $_POST['user']; $color = $_POST['color']; $self = $_SERVER['PHP_SELF']; if( ( $user != null ) and ( $color != null ) ) { setcookie( "firstname", $user , time() + 36000 ); setcookie( "fontcolor", $color, time() + 36000 ); header( "Location:getcookie.php" ); exit(); } <html> <head> <title>Set Cookie Data</title> </head> <body> <form action ="<?php echo( $self ); " method = "post"> Please enter your first name: <input type = "text" name = "user"><br><br> Please choose your favorite font color:<br> <input type = "radio" name = "color" value = "#FF0000">Red <input type = "radio" name = "color" value = "#00FF00">Green <input type = "radio" name = "color" value = "#0000FF">Blue <br><br> <input type = "submit" value = "submit"> </form> </body> </html>
总结:上面的实例没做安全处理,只是简单的获取了表单提交的数据,我们可以做一些安全处理,如isset() addslashes 等处理.
本文地址:
转载随意,但请附上文章地址:-)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version
Useful JavaScript development tools