最近在自学php,刚好学到了表单这一块,就简单说一下吧。
首先,我这边是用到了两个软件,一个是phpstudy,另一个是phpstorm。
安装也很简单,我这里就不多说了。
步骤:1.打开phpstudy
就是这样:
2.打开编辑器,我的是用phpstorm,由于我的phpstudy是保存在e盘下。
所以我直接在e:\phpstudy\phptutorial\www这个目录下建立了两个文件,一个是index.php,一个是welcome.html.
下面是两个文件的代码
index.php
1
2
3
|
欢迎<?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中文乱码的问题。
看一下效果图吧。
点击提交后,
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/sushuiheng/archive/2017/11/16/7843354.html