I'm trying to pass image coordinates via json to a php file that should update the database. I have this in jquery:
var coords=[];
var coord = $(this).position();
var item = { coordTop: coord.top, coordLeft: coord.left };
coords.push(item);
var order = { coords: coords };
$.ajax({
type: "POST",
data : +$.toJSON(order),
url: "updatecoords.php",
success: function(response){
$("#respond").html('<div class="success">X and Y Coordinates
Saved</div>').hide().fadeIn(1000);
setTimeout(function(){
$('#respond').fadeOut(1000);
}, 2000);
}
});
This is what updatecoords.php looks like:
<?php
$db = Loader::db();
$data = json_decode($_POST['data']);
foreach($data->coords as $item) {
$coord_X = preg_replace('/[^\d\s]/', '', $item->coordTop);
$coord_Y = preg_replace('/[^\d\s]/', '', $item->coordLeft);
$x_coord = mysql_real_escape_string($coord_X);
$y_coord = mysql_real_escape_string($coord_Y);
$db->Execute("UPDATE coords SET x_pos = '$x_coord', y_pos = '$y_coord'");
}
?>
The success message shows from the javascript however nothing gets updated in the database? Any thoughts?

Loadercoming from? – Asad Dec 3 '12 at 8:21$db= Loader::db(); $posimg = $img->getFileID(); $get_coords = $db->Execute("SELECT * FROM coords WHERE id = '$posimg'"); while ($row = $get_coords->FetchRow()) { $x = $row['x_pos']; $y = $row['y_pos']; }But I can't get the rows to update using the coordinates sent via JSON. – user1871949 Dec 3 '12 at 23:51