-5
// $tags can be a string with comma separated values, such as: 
// $tags = 'first, second, third';

如何通过表单向此 php 代码添加标签。我想在表单中输入一个值,然后将其添加到$tags然后它必须将我重定向到另一个页面?

4

2 回答 2

0

在表单操作页面上

$next_value = $_POST['fildvalue'];
$tags .=','.$next_value;
header('location:url') ;
于 2013-04-24T08:35:16.180 回答
0
<?php
$tags=array();
$tags[]="first";
$tags[]="second";
$tags[]="third";

array_push($tags,$_GET["tag"]);
$nTags=implode(",",$tags);
$nTags=urlencode($nTags);
header("Location : http://example.com/?tags=$nTags");
?>
于 2013-04-24T08:36:35.880 回答