0

複数のフォーム フィールド (テキスト フィールドとテキスト エリア) から mysql テーブルの 1 行 (= ID) を更新しようとしています。テーブルは次のようになります。

ID | 列 1 | 列 2 | 列 3 ... | コル50

このように $_Post[] 変数を使用すると、すべて正常に動作します

$Name = $_POST['Name'];
$Name2 = $_POST['Name2'];  
$sql= "UPDATE Bilder SET Name = '$Name', Name2 = '$Name2' WHERE id = '$ID'"; 


<form id="InsertData" action="insert-dataset.php" method="post"> 
  <input type="hidden" name="ID" id="ID" value="'.$row->id.'" /> 
  <input type="text" name="Name" value="'.$row->Name.'" /><br />
  <input type="text" name="Name2" value="'.$row->Name.'" /><br />  
  <input type="submit" name="submit" value="Daten eintragen" class="sendbutton" /> 
</form> 

何百ものフィールドがあるので、次のような配列を使用したいと思います。

<input type="text" name="Name[]" value="'.$row->Name.'" />

1 つの列のすべてのセルを更新する実際の例を見つけました。しかし、1 つの ID のすべての列を更新する必要があります。

どんな助けでも大歓迎です。前もって感謝します!

これが最終結果です。

$col_result = mysql_query("SHOW COLUMNS FROM Bilder");
$row_result = mysql_query(sprintf("SELECT * FROM Bilder WHERE id = %s", $ID));
if(!$col_result) {
    echo 'Konnte Anfrage nicht ausführen: ' . mysql_error();
    exit;
}
if ( !empty($_POST) ) { 
    $aDataSet = array(); 
    while( list( $field, $value ) = each( $_POST )) { 
    $aDataSet[] = $field . "='" . $value . "'";
    } 
$update_sql = "UPDATE Bilder SET " . implode( ',', $aDataSet ); 
$update_sql .= sprintf("WHERE id = '$ID'");
$result = mysql_query($update_sql, $connection); 
if(!$result)  
 {  
 die('');  
 }  
 echo '';  
}   
mysql_close($connection)
?> 

更新クエリには、対応する入力フィールド (入力名 = 列名) を持つ列のみが含まれます。何百もの入力フィールドがあるので、同じコードを使用して更新クエリを複数のページに広げることができます。

ご協力ありがとうございました。

4

3 に答える 3

0

ここにいくつかのアイデアがあります。

  • フィールドに役立つ名前を付けます。名前 1、名前 2 などのゴミの名前を付けると、後でお尻を噛むことになります。また、これを見なければならない次の人にも親切にしてください.
  • 意味のあるフィールド名または意味のないフィールド名がたくさんあり、それらをすべて手動でコードに入力したくない場合は、SQL DESCRIBE ( http://dev.mysql.com/doc/refman/5.0/en/explain .html ) または SHOW COLUMNS コマンド ( http://php.net/manual/en/function.mysql-list-fields.php )

注: 未テスト

<?php
// Get all of the field names
$col_result = mysql_query("SHOW COLUMNS FROM Bilder");

// make sure we could get the colnames from mysql
if(!$col_result) {
    echo 'Could not run query: ' . mysql_error();
    exit;
}

// Handle a POST
if(!empty($_POST)){
    // start preparing the update statement
    $update_sql = "UPDATE Bilder SET ";
    if(mysql_num_rows($col_result) > 0) {
        // make a key = value statement for each column in the table
        while($colrow = mysql_fetch_assoc($col_result)) {
            // prepare the key = value statement
            $update_sql .= sprintf(" %s = %s, ", $colrow["Field"], mysql_real_escape_string($_POST[$colrow["Field"]]));
        }
    }
    // BTW this is going to have a extra "," in it use substr to clear it
    $update_sql = substr_replace($update_sql ,"", -2);

    // finish off by limiting this statement to only one row
    $update_sql .= sprintf(" WHERE id = %s", mysql_real_escape_string($_POST["id"]));

    // ACTUALLY RUN THIS STATEMENT
}

if(!$row_result) {
    echo 'Could not run query: ' . mysql_error();
    exit;
}

    // 作業中の現在の行を取得するために SQL を準備します $row_result = mysql_query(sprintf("SELECT * FROM Bilder WHERE id = %s", $id));

// Get the row item that you are currently working on
$row = mysql_fetch_row($row_result);

// output all the formfields for the above row
if(mysql_num_rows($col_result) > 0) {
    // Go through all of the columns and output the colname from $colrow and the value from $row
    while ($colrow = mysql_fetch_assoc($col_result)) {
        // The HTML (don't be daunted by that variable-variable http://php.net/manual/en/language.variables.variable.php)
        echo '<input type="text" name="' . $colrow["Field"] . '" value="' . $row->{$colrow["Field"]} . '" /><br />';
    }
}
?>
于 2013-09-10T14:54:32.197 に答える