0
<SCRIPT LANGUAGE="JavaScript">

var i=0,j=0;

var t1= [];

function add(){

    i++;

    var parent = document.forms[0];

    var div = document.createElement('div');

    var input = document.createElement('input');

    input.type='text';

    input.name='text'+i;

    input.value = "text"+i;

    input.size = 10;

    t1.push(input);

    div.appendChild(input);

    var removeButton = document.createElement("button");

    removeButton.innerHTML = "Remove";

    removeButton.onclick = function(e) {

        this.parentNode.parentNode.removeChild(this.parentNode);
        return(false);

    };

    div.appendChild(removeButton);

    var mybr=document.createElement("br");

    div.appendChild(mybr);

    parent.appendChild(div);

}
</SCRIPT>

<button onclick="add()">+</button>

<form action='generate.php' method='get'>

<input type='submit' name='button' value='save'>

</form>

これは実行中のコードです...これを使用することで、どのコードが各テキストボックスの値をmysqlデータベースmybeに配置できるのでしょうか。

$sql = "UPDATE `sampledb` SET  `text1` =  'anyvaluethatuserinputs' && `text2` =  'anyvaluethatuserinputs' && `text3` =  'anyvaluethatuserinputs'";

しかし、どのように...

4

1 に答える 1

1

この行をgenerate.phpに追加します。テキストボックスの値とテキストボックスのIDを文字列で取得できます。

<?php

$sql = "UPDATE `sampledb` SET  ";


if(isset ($_GET))
{

    foreach ($_GET as $key => $value) 
        $sql .= "$key = '$value'  , ";

}

$sql= substr_replace ($sql , '', strlen($sql) -2 , 1);
echo $sql;

    //here establish the connection and pass the $sql as the query

?>
于 2012-08-29T03:03:31.863 に答える