<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中通过$_POST['tags']得到所有name为tags[]的值并合并到一个数组内。
不明白它的原理是怎样的
HUH函数
相关分类