Home > Backend Development > PHP Tutorial > Submit a basic knowledge of PHP form submission

Submit a basic knowledge of PHP form submission

WBOY
Release: 2016-07-29 08:45:59
Original
875 people have browsed it

register.php:

复制代码 代码如下:

























用户名:
姓名:
密码:
邮箱:








request.php

复制代码 代码如下:


$username = $_POST['username'];
$name = $_POST['name'];
$pwd = $_POST['pwd'];
$email = $_POST['email'];
//print_r($username);
if(!empty($username))
{
echo "您填写的信息为:
n";
echo "用户名: $username
n";
echo "姓名: $name
n";
echo "密码: $pwd
n";
echo "邮箱: $email
n";
}
print_r($_POST)
//echo "aaaa";
?>



当然,你也可以把request跟regiser.php写到一起。

以上就介绍了提交 PHP的一个基础知识 表单提交,包括了提交方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template