php获取html表单数组数据 php获取html页面传值

发布时间:2020-04-13编辑:脚本学堂
有关php获取html表单数组中数据的方法,并分享了几个php获取html页面传值的方法与例子,掌握下页面传值方法get与post的区别。

一、php获取html表单数组数据

表单数组:
 

复制代码 代码示例:
<form method="post" action="arrayformdata.php">
<label>Tags</label>
<input type="text" name="tags[]"/>
<input type="text" name="tags[]"/>
<input type="text" name="tags[]"/>
<input type="text" name="tags[]"/>
<input type="text" name="tags[]"/>
<input type="submit" value="submit">
</form>
</html>

php代码:
 

复制代码 代码示例:
<?php
$postedtags = $_POST['tags'];
foreach ($postedtags as $tag){
    echo "<br />$tag";
}
?>

附,php获取html页面传值的方法与例子。

传值常用get与post方法,get一般用来获取少量安全的参数,post则一般用来传递表单数据或者比较大的数据。
 
1、最简单的形式:
 

$if(isset($_POST['id']))
$id=$_POST['id'];
 

 
2、有时表单传递时,以上方法并不适用。

例如:用户注册
 

if(isset($_POST['username']))
$username=$_POST['username'];
........
$user['username']=$username;
.......
$this->save($user);
 

由于表单的数据很多,需要不断的重复这类代码
更纠结的是:得到之后我们还要每个都放入到数组或者对象之中。
但其实这却是可以一步完成的:
 

复制代码 代码示例:
<form name='user'>
<input type='text' name='user[username]' >
<input type='text' name='user['age']'>
<input type='submit' value='1'/>
</form>

在html中用上述方式,可以直接得到数组:
 

if($_POST['submit'])
$user=$_POST['user'];

3、对于checkbox控件来说传给php的为php数组
 

足球<input  name='football' type='checkbox' name='checkbox[]'/>
篮球<input name='basketball' type='checkbox' name='checkbox[]'/>
排球<input name='volleyball' type='checkbox' name='checkbox[]'/>

php代码:
 

$fav=$_POST['checkbox'];
for($i=0;i<=count($fav));$i++){
if(!is_null($checkbox[$i]))
$checkvalue=$checkbox[$i].',';}

4、文件上传
对于文件上传,一般采取的是表单提交,这是我们一定要设置表单的enctype
enctype 属性规定在发送到服务器之前应该如何对表单数据进行编码。
multitpart/form-data为不编码,所以文件能够按原有格式上传

例子:
 

复制代码 代码示例:
<html>
<body>
<form action="upload_file.php" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>

获取表单数据:
 

复制代码 代码示例:
<?php
if ($_FILES["file"]["error"] > 0)
  {
  echo "Error: " . $_FILES["file"]["error"] . "<br />";
  }
else
  {
  echo "Upload: " . $_FILES["file"]["name"] . "<br />";
  echo "Type: " . $_FILES["file"]["type"] . "<br />";
  echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
  echo "Stored in: " . $_FILES["file"]["tmp_name"];
  }
?>