4

これが非常に単純な質問である場合は申し訳ありません。私はphpを学んでいますが、クイズを作成できるスクリプトを書いていて、今はhtmlが嫌いです。ラジオ ボタンをクリックしてフォームを送信すると、割り当てた値ではなく、常にボタンがオンになります。これが私のコードの抜粋です:

echo '<form action="index.php" method="get">';
for ($i=0; $i<$_SESSION["fsize"];$i++)
{
    echo 'Type of Answer for Question ' . $i + 1 . ": <br> ";
    echo '<input type="radio" name="f' . $i . ' value="radio">Radio Buttons <br>';
    echo '<input type="radio" name="f' . $i . ' value="text">Text area <br>';
    echo '<input type="radio" name="f' . $i . ' value="Checkboxes">Checkboxes <br>';

私のphpによって生成された、非常に不完全な私のページのhtmlは次のとおりです。

<html>
<body>
<form action="index.php" method="post">
Number of questions: 
<input type="number" name="fsize">
<input type="submit">
</form>
<form action="index.php" method="get"> 
1: 
<br> 
<input type="radio" name="f0 value="radio">
Radio Buttons 
<br> 
<input type="radio" name="f0 value="text"> 
Text area  
<br> 
<input type="radio" name="f0 value="Checkboxes"> 
Checkboxes  
<br> 
1:  
<br>  
<input type="radio" name="f1 value="radio"> 
Radio Buttons  
<br> 
<input type="radio" name="f1 value="text"> 
Text area  
<br> 
<input type="radio" name="f1 value="Checkboxes"> 
Checkboxes  
<br> 
1:  
<br>  
<input type="radio" name="f2 value="radio"> 
Radio Buttons  
<br> 
<input type="radio" name="f2 value="text"> 
Text area  
<br> 
<input type="radio" name="f2 value="Checkboxes"> 
Checkboxes  
<br> 
<input type="submit"> 
\n  
</form>
</body>
</html>

結果を確認できるように、投稿ではなく取得に具体的に切り替えました。これは私のURLの重要な部分です/index.php?f0+value%3D=on&f1+value%3D=on&f2+value%3D=on

適切に送信する方法を知っている人はいますか? 完全な php スクリプトを見たい場合は、次の場所にあります。

<html>
<body>

<?php
session_start();
echo '<form action="index.php" method="post"> Number of questions: <input type="number"
name="fsize">';
echo '<input type="submit"></form>';
if (isset($_POST["fsize"]))
{
$_SESSION["fsize"] = $_POST["fsize"];
}
if (isset($_SESSION["fsize"]))
{
echo '<form action="index.php" method="get">';
for ($i=0; $i<$_SESSION["fsize"];$i++)
{
    echo 'Type of Answer for Question ' . $i + 1 . ": <br> ";
    echo '<input type="radio" name="f' . $i . ' value="radio">Radio Buttons <br>';
    echo '<input type="radio" name="f' . $i . ' value="text">Text area <br>';
    echo '<input type="radio" name="f' . $i . ' value="Checkboxes">Checkboxes <br>';
    if (isset($_GET["f" . $i]))
    {
        $_SESSION["f".$i] = $_GET["f".$i];
        echo "I exist!";
    }
    if (isset($_SESSION["f".$i]))
    {
        echo '<textarea rows="4" cols="50"> What is the question? </textarea>';
        switch($_SESSION["f".$i])
        {
            case("radio"):
                echo "you chose a radio button!";
                break;
            case("text"):
                echo "You chose a text area!";
                break;
            case("Checkboxes"):
                echo "You chose checkboxes!";
                break;
            default:
                break;
        }
    }
    else if (isset($_GET["f".$i]))
    {
        echo '<textarea rows="4" cols="50"> What is the question? </textarea>';
        switch($_GET["f".$i])
        {
            case("radio"):
                echo "you chose a radio button!";
                break;
            case("text"):
                echo "You chose a text area!";
                break;
            case("Checkboxes"):
                echo "You chose checkboxes!";
                break;
            default:
                break;
        }
    }
}
echo '<input type="submit"> </form>';
}
?>

</body>
</html>

他にもいくつか問題があることはわかっていますが、これが最も腹立たしいです。長々とすみません、Hovestar。

4

3 に答える 3

7

ラジオ コントロールの各 name 属性の末尾の " を忘れました。

<input type="radio" name="f0" value="radio">
<!--                        ^ this here is important -->

したがって、ブラウザは、このラジオの name 属性"f0 value="に value 属性がなく、欠落していると認識します。したがって、デフォルト属性を追加しますon

于 2013-04-28T16:37:44.143 に答える
1

Try this.

echo '<form action="index.php" method="get">';
for ($i=0; $i<$_SESSION["fsize"];$i++)
{
    echo 'Type of Answer for Question ' . $i + 1 . ": <br> ";
    echo '<input type="radio" name="f' . $i . '" value="radio">Radio Buttons <br>';
    echo '<input type="radio" name="f' . $i . '" value="text">Text area <br>';
    echo '<input type="radio" name="f' . $i . '" value="Checkboxes">Checkboxes <br>

if you have more statements make sure to close it properly using ".

于 2013-04-28T16:44:59.733 に答える