2

選択したラジオボタンの値を取得するにはどうすればよいですか。長方形(または円)を描くための座標として使用します。最終的には、同じ目的ですべての回答の平均を取得したいと思います。

これが私のhtmlフォームのコードです:

<form id="FormName" action="draw.php" method="get" name="FormName">

  <table border="3">
    <tr>
      <td><span class="hiddenDiv"> Here is my question </span>
      </td>
      <td><span class="hiddenDiv">
            <input type = "radio"  name = "g1" id="g1q1"  value = "-3"  />
            </span>
      </td>
      <td><span class="hiddenDiv">
              <input type = "radio"  name = "g1" id="g1q2"  value = "-2" />
            </span>
      </td>
      <td><span class="hiddenDiv">
              <input type = "radio"  name = "g1" id="g1q3"  value = "-1" />
            </span>
      </td>
      <td><span class="hiddenDiv">
              <input  name = "g1" type = "radio" id="g1q4"  value = "0" />
            </span>
      </td>
      <td><span class="hiddenDiv">
              <input type = "radio"  name = "g1" id="g1q5"  value = "1" />
            </span>
      </td>
      <td><span class="hiddenDiv">
              <input type = "radio"  name = "g1" id="g1q6"  value = "2" />
            </span>
      </td>
      <td><span class="hiddenDiv">
              <input type = "radio"  name = "g1" id="g1q7"  value = "3" />
            </span>
      </td>
    </tr>
</form>

そして、これが私が使おうとしているdraw.phpです。

<?php  
    // Create a 55x30 image
    $im = imagecreatetruecolor(620, 620);
    $white = imagecolorallocate($im, 255, 255, 255);
    $black = imagecolorallocate($im, 130, 130, 130);
    $red = imagecolorallocate($im, 255, 0, 0);
    $answer = 'g1q1';
     //$rrr = $('input[name=g1]:checked','FormName');

    // Draw a white rectangle
    imagefilledrectangle($im, 0, 0, 620, 620, $white);
    imagefilledrectangle($im, 24,  24, 600, 600, $black);
    imageline($im, 0, 310, 620, 310, $white);
    imageline($im, 310, 0, 310, 620, $white);
    imagefilledrectangle($im, $answer*12, $answer*12, $answer*12+12, $answer*12+12, $red);
    //imagefilledellipse 
    // Save the image
    imagepng($im, './imagefilledrectangle.png');
    imagedestroy($im);

    //Get the file
    $content = file_get_contents('./imagefilledrectangle.png');

    echo '<img src="'.$snippet_theme.'./imagefilledrectangle.png" />'; 
?>
4

2 に答える 2

0

You're using GET, so it's as simple as

$val = $_GET['g1'];

For POST, it would be $_POST[<name>].

于 2012-10-02T22:26:32.360 に答える
0

PHP では、そのコードを取得するには、送信ボタンを追加してから値を取得します。$_POST

例:$_POST['g1']

于 2012-10-02T22:27:26.320 に答える