最近在自学PHP,刚好学到了表单这一块,就简单说一下吧。
首先,我这边是用到了两个软件,一个是PHPstudy,另一个是phpstorm。
安装也很简单,我这里就不多说了。
步骤:1.打开phpstudy
就是这样:
2.打开编辑器,我的是用phpstorm,由于我的phpstudy是保存在e盘下。
所以我直接在E:\phpStudy\PHPTutorial\WWW这个目录下建立了两个文件,一个是index.php,一个是welcome.html.
下面是两个文件的代码
index.php
欢迎<?php header( "Content-Type:text/html;charset=utf-8" ); echo $_POST [ "fname" ]; ?>!<br> 你的年龄是 <?php echo $_POST [ "age" ]; ?> 岁。 |
welcome.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html> < html lang = "en" > < head > < meta charset = "UTF-8" > < title >菜鸟教程</ title > </ head > < body > < form action = "index.php" method = "post" > 名字:< input type = "text" name = "fname" > 年龄:< input type = "text" name = "age" > < input type = "submit" value = "提交" > </ form > </ body > </ html > |
这里说一下,header(“Content-Type:text/html;charset=utf-8”);这一行代码是为了解决PHP中文乱码的问题。
看一下效果图吧。
点击提交后,
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容