0

データベースを文字の ID で更新したいのですが、それらをスロットにドロップしても、更新したい行が更新されません。私の質問は、これを適切にコーディングしたり、エラーを修正したりする方法の正しい方向を教えてもらえますか?

function updateTeam(){

var team = '', slot = [];
if($('input[name=s0]').val()!=""){
    slot.push($('input[name=s0]').val());
}
if($('input[name=s1]').val()!=""){
    slot.push($('input[name=s1]').val());
}
if($('input[name=s2]').val()!=""){
    slot.push($('input[name=s2]').val());
}
$.each(slot, function(i,e){
    if(i == 0) team = e;
    else team = team + ',' + e;
});
$.ajax({

       url : _path + "/core/ajax.php",
       type : 'POST',
       data : { f: 'setTeam', i: team},
       dataType : 'json',
       success :  function(data) {
        if(data.error){
            errorMessage('Error: ' + data.error, data.error, data.error);
        }
    }
});
}

Php

function clean($content) {
    $content = mysql_real_escape_string(htmlspecialchars($content));
    return $content;
}
//Update the user team.
if (isset($_POST['f']) && $_POST['f'] == 'updateTeam')  {

if (isset($_POST['s0'])) {
        $cid1 = $secure->clean($_POST['s0']);
    } else {
        $cid1 = '1';
    }

if (isset($_POST['s1'])) {
        $cid2 = $secure->clean($_POST['s1']);
    } else {
        $cid2 = '2';
    }

if (isset($_POST['s2'])) {
        $cid1 = $secure->clean($_POST['s2']);
    } else {
        $cid1 = '3';
    }

$updateTeam = $db->query("UPDATE accounts SET cid1 = '$cid1', cid2 = '$cid2', cid3 = '$cid3' WHERE id = '$id'");
}

Google Chrome で要素を調べると、i:1,5,2 と表示されます。"i" の 1 が $cid1、5 が $cid2、2 が cid3 になるように行を更新する方法を示してください。私の php コードは間違っていますか? HTML:

 <div id="droppable_slots" class="current_team">
                    <div class="slot 1">1</div>
                    <input type="hidden" name="s0" value="10">
                    <div class="slot 2">2</div>
                    <input type="hidden" name="s1" value="7">
                    <div class="slot 3">3</div>
                    <input type="hidden" name="s2" value="3">
                </div>
4

1 に答える 1

0

のキーを持つ csv を送信しているiため$_POST['i'],. したがって、コードは次のように更新できます-

//Update the user team.
if (isset($_POST['f']) && $_POST['f'] == 'updateTeam')  {

//Explode the i post
if (isset($_POST['i'])) { 
        $vals = explode("," , $_POST['i'] );
    }

if (isset($vals[0])) {
        $cid1 = $secure->clean($vals[0]);
    } else {
        $cid1 = '1';
    }

if (isset($vals[1])) {
        $cid2 = $secure->clean($vals[1]);
    } else {
        $cid2 = '2';
    }

if (isset($vals[2])) {
        $cid1 = $secure->clean($vals[2]);
    } else {
        $cid1 = '3';
    }

$updateTeam = $db->query("UPDATE accounts SET cid1 = '$cid1', cid2 = '$cid2', cid3 = '$cid3' WHERE id = '$id'");
}
于 2013-10-12T03:36:48.530 に答える