0

以下に示すように、MySqlテーブル「exercise」からのチェックボックスのループがあります。

<form id="form1" name="form1" method="POST" action="insertDrills.php">

  <table width="100%" border="1" cellspacing="0" cellpadding="0">
    <?php do { ?>
      <tr>
        <td>


<input type="checkbox" name="drillSelect[]" value="<?php echo $row_Recordset1['drillID']; ?>" id="drillSelect" />

        <?php echo $row_Recordset1['rubrik']; ?>


        </td>
      </tr>
      <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
    <tr>
      <td colspan="2">



      <input name="spelarID" type="hidden" id="spelarID" value="<?php echo $row_rsSpelare['id']; ?>" />
      <input name="date" type="hidden" id="date" value="<? print date("Y-m-d h:i:s"); ?>" />
  <input type="submit" name="submit" id="submit" value="Välj övningar" />
  <input type="button" value="Avbryt" onclick="window.close();"></button>



      </td>
    </tr>
  </table>
</form>

非表示のフィールド「spelarID」の値とチェックボックス配列の値が、ルックアップ テーブル「exercise_spelare_ref」に挿入されます。

<?php
$id = $_POST['spelarID']; 
$drills = $_POST['drillSelect'];
$date = $_POST['date']; 

$inserts = array(); 
foreach ($drills as $drills)
    $inserts[] = "('$id','$drills','','$date')"; 


$query = "REPLACE INTO exercise_spelare_ref VALUES ". implode(", ", $inserts);

//echo "query = $query"; // for debugging purposes, remove this once it is working 
mysql_query($query) or die(mysql_error()); 
?>

フォームで「チェック済み」とマークされたルックアップ テーブルの値を作成するにはどうすればよいですか?

ここに解決策がありますhttps://stackoverflow.com/a/4069477 Martin Bean によって書かれましたが、うまくいきませんか?

私はここで立ち往生しています。誰かが私を助けてくれることを願っています!

次のようなMartin Beansスクリプトを試しました:

$uid = $row_rsSpelare['id']; // your logged in user's ID

$exercise = array();

// get an array of exercise
$sql = "SELECT drillID FROM exercise";
$res = mysql_query($sql);
while ($row = mysql_fetch_object($res)) {
    $exercise[$row->id] = $row->drillID;
}

// get an array of exercise user has checked
$sql = "SELECT DISTINCT drillID FROM exercise_spelare_ref WHERE id = '$uid'";
$res = mysql_query($sql);
while ($row = mysql_fetch_object($res)) {
    $checked[] = $row->drillID;
}

// this would be templated in a real world situation
foreach ($exercise as $id => $drillID) {
    $checked = "";
    // check box if user has selected this exercise
    if (in_array($checked, $id)) {
        $checked = 'checked="checked" ';
    }
    echo '<input type="checkbox" name="drillSelect[]" value="'.$id.'" '.$checked.'/>';
}

しかし、警告が表示されます:

警告: in_array() は、パラメーター 2 が配列であると想定します。これは、158 行目の /customers/b/d/e/teeview.se/httpd.www/analys_kund/selectDrills.php で指定された文字列です。

158行目は次のとおりです。

 if (in_array($checked, $id)) {
4

1 に答える 1

2

SELECTテーブルの項目を配列に格納し、現在のチェックボックスの ID が配列内の何かと一致checkedする場合は、HTML で属性を追加する必要があります。

于 2012-12-29T14:28:14.230 に答える