-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 に答える