我有一个关于帖子和表单元素的简单但奇怪的问题。
我有一个表格
<form id='form' name='form' method='post' action='test.php'>
<?php
foreach ($tests as $test){
echo $test['ID']."<br>"; //output 1 2 3 4 5 6
echo $_POST['testSelect'].'<br>'; //output 3 3 3 3 3 3
if($test['ID'] == $_POST['testSelect']){ //which 3 mataches 3
echo 'match';
}
}
?>
<select name='testSelect'>
<?php
foreach ($tests as $test){
echo '<option value="'.$test['ID'].'">'.$test['Name'].'</option>';
}
?>
</select>
<input type='submit' value='Go'></input>
我想匹配$_POST
我的变量并match
在匹配时输出“”。
但是,我的输出中没有看到 ' Match
' 显示。这根本没有意义!
任何人都可以帮忙吗?非常感谢