// $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");
?>