0
私はドロップダウンメニューの価値を得ようとしています。ドロップダウンメニューは、ユーザーがボタンWith Undrafted Players
をクリックすると作成されます。しかし、私がselectOptionud
を返すと、私は何の価値も得られません。ここで何が起こっているか考えてみましょうか?ここ選択要素から値を取得できません。 (PHP/HTML)
<html>
<body>
<?php
if (isset($_POST['submitundrafted'])) {
$selectOptionud = $_POST['filter_ud']; //undrafted selection
echo $selectOptionud;
}//end of submitundrafted
if (isset($_POST['undrafted'])) {
$menu= "<select name='filter_ud' id='filter_ud'>
" . $options . " //I have erased the previous code that gets the value of this variable.
</select>";
echo $menu;
?>
<form action="transfer.php" method="post">
<input type="submit" name="submitundrafted" value="Submit" />
</form>
<?php
}
?>
<form action="transfer.php" method="post">
<input type="submit" name="undrafted" value="With Undrafted Players">
</form>
</body>
</html>
あなたは$ menu' 'エコーされている(または'
私は最初に '
と$ optionsの値はどこですか? – shubham715