是否有可能將表單字段值獲取到數組中? EX:獲取表單值到php中的數組中
<?php
array('one', 'two', 'three');
?>
<form method="post" action="test.php">
<input type="hidden" name="test1" value="one" />
<input type="hidden" name="test2" value="two" />
<input type="hidden" name="test3" value="three" />
<input type="submit" value="Test Me" />
</form>
所以有可能將所有的表單值,無論它們的數量傳遞給PHP中的數組?
很大的考驗,我怎麼能得到從擺脫提交按鈕該數組被張貼?我怎麼能添加一些元素到數組中? – 2009-12-17 20:42:34
我不會添加任何東西到該陣列。至於按鈕,只需將名稱字段關閉。 – 2009-12-17 20:44:43