I'm trying to implement an ajax tutorial I found at http://linssen.me/entry/extending-the-jquery-sortable-with-ajax-mysql/
The tutorial allows for click-and-drag sortable bullet lists...where each item's position is updated in the database.
There's an info box that shows what changes have supposedly been made, but there are no changes made to the database.
I've gone over the tutorial a hundred times and I have no idea what could be the problem.
I could use a second pair of eyes.
process-sortable.php
<?php
foreach ($_GET['listItem'] as $position => $item) :
$sql[] = "UPDATE `user_feeds` SET `feed_order` = $position WHERE `feed_id` = $item";
endforeach;
print_r ($sql);
?>
index.php
<?php
require_once('../php/includes/simplepie.inc');
require_once('../php/includes/newsblocks.inc');
include "../base.php";
$userid = $_SESSION['UserID'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>jQuery Sortable With AJAX & MYSQL</title>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.7.1.custom.min.js"></script>
<link rel='stylesheet' href='styles.css' type='text/css' media='all' />
<script type="text/javascript">
// When the document is ready set up our sortable with it's inherant function(s)
$(document).ready(function() {
$("#test-list").sortable({
handle : '.handle',
update : function () {
var order = $('#test-list').sortable('serialize');
$("#info").load("process-sortable.php?"+order);
}
});
});
</script>
</head>
<body>
<pre>
<div id="info">Waiting for update</div>
</pre>
<ul class="tabs userfeeds" id="test-list">
<?php
$feed_results = mysql_query("SELECT feed_id, feed_title, feed_order, feed_page_id FROM user_feeds WHERE ((feed_owner = '" . $_SESSION['UserId'] . "') AND (feed_page_id = '" . $pageid . "')) ORDER BY feed_order ASC;");
$tabcounter = 1;
while($row = mysql_fetch_array($feed_results))
{
echo "<li id='listItem_";
echo $row[feed_id];
echo "' >";
echo $row[feed_title];
echo "<img src='arrow.png' alt='move' width='16' height='16' class='handle' /></li>";
$tabcounter++;
}
?>
</ul>
<form action="process-sortable.php" method="get" name="sortables">
<input type="hidden" name="test-log" id="test-log" />
</form>
</body>
</html>