// $tags can be a string with comma separated values, such as:
// $tags = 'first, second, third';
如何通过表单向此 php 代码添加标签。我想在表单中输入一个值,然后将其添加到$tags
然后它必须将我重定向到另一个页面?
// $tags can be a string with comma separated values, such as:
// $tags = 'first, second, third';
如何通过表单向此 php 代码添加标签。我想在表单中输入一个值,然后将其添加到$tags
然后它必须将我重定向到另一个页面?
在表单操作页面上
$next_value = $_POST['fildvalue'];
$tags .=','.$next_value;
header('location:url') ;
<?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");
?>