我正在尝试从一些隐藏的文本字段中提取值,但不太确定该怎么做。
这些字段存储在一个数组中,然后循环输出。
我有几个这样的字段:
<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;
}