我想提取一些隱藏文本字段的值並不太確定如何去做。php回聲隱藏的表單字段
這些字段存儲在一個數組中,然後在一個循環中輸出。
我有幾個領域是這樣的:
<input type="hidden" name="variable_post_id[0]" value="1336"/>
<input type="hidden" name="variable_post_id[1]" value="1337"/>
<input type="hidden" name="variable_post_id[2]" value="1338"/>
我怎麼會去從上面提取的價值觀?我曾嘗試以下,但沒有喜悅:
$posts = $_REQUEST['variable_post_id'];
foreach ($posts as $post) {
echo $post;
}
我已經嘗試過這一點。只是試了一遍,我得到以下內容:未定義的索引:variable_post_id [] – danyo
曾經看到我的編輯 – Gautam3164