Use your left/right keys to browse tutorials
Drag & Drop with PHP & jQuery

Drag & Drop with PHP & jQuery

1 Star2 Stars3 Stars4 Stars5 Stars
Posted on July 24, 2009

The ability to drag and drop content on a page and have it save the order can make for a great user interface and is actually relatively easy to execute with a few lines of jQuery. You’ll need to include the jQuery user interface library which you can find here: Jquery Google API. All the files needed to get this up and running are in the download at the bottom of this post.

In this tutorial we’re going to be looking at 2 main PHP pages. the index.php page which contains the contents and functionality to perform the drag and drop and the updateList.php file which is a simple piece of code to update the listOrder column in the database using PHP and MySQL. Additionally you will need to add your database details to the connect.php file in the download package.

The Code

$(document).ready(function(){
	  function slideout(){
  setTimeout(function(){
  $("#response").slideUp("slow", function () {
      });

}, 2000);}

    $("#response").hide();
	$(function() {
	$("#list ul").sortable({ opacity: 0.8, cursor: 'move', update: function() {

			var order = $(this).sortable("serialize") + '&update=update';
			$.post("updateList.php", order, function(theResponse){
				$("#response").html(theResponse);
				$("#response").slideDown('slow');
				slideout();
			});
		}
		});
	});

});

Here’s a summary of whats going on in the code above.

  1. To start with we have a simple function that will slide up the ‘response’ div which contains the message once the data is saved in the database.
  2. We then move to the section that enables us to drag and drop the boxes. we then set the variable ‘order’ which contains the data to be posted via ajax to our database update script.
  3. Once the ajax request has been executed we then display the response in the div #response

This is the section in the index.php page that retrieves the results from the database in the correct order.

  <div id="list">

    <div id="response"> </div>
    <ul>
      <?php
                include("connect.php");
				$query  = "SELECT id, text FROM dragdrop ORDER BY listorder ASC";
				$result = mysql_query($query);
				while($row = mysql_fetch_array($result, MYSQL_ASSOC))
				{

				$id = stripslashes($row['id']);
				$text = stripslashes($row['text']);

				?>
      <li id="arrayorder_<?php echo $id;?>"><?php echo $id;?> <?php echo $text;?>
        <div class="clear"></div>
      </li>
      <?php } ?>
    </ul>
  </div>

Below is the code from the ‘updateList.php’ file. Its pretty self explanatory, we have a MySQL update script wrapped with a foreach loop which adds the list order number in the database and echo’s the response.

<?php
include("connect.php");
$array	= $_POST['arrayorder'];
if ($_POST['update'] == "update"){
$count = 1;
	foreach ($array as $idval) {
		$query = "UPDATE dragdrop SET listorder = " . $count . " WHERE id = " . $idval;
		mysql_query($query) or die('Error, insert query failed');
		$count ++;
	}
	echo 'All saved! refresh the page to see the changes';
}
?>

demodownload



Recent shares

More tutorials from Papermashup
Comments
80 discussions around Drag & Drop with PHP & jQuery
  1. inam101 says:

    Hello, it was a nice tutorial and a very useful control.

    I have a problem, whenever I click on a link inside the tab-body, it closes/hides the tab body instead of going to the desired destination page.

    Please help me with this.
    Thanks

  2. Jeff says:

    Hi,
    Great script!
    Maybe someone may help me, I am looking for a way to use drag and drop over a grid with different shapes library.
    Rectangles, squares of differents size picked up froma library and clipping together side by side over a grid.

    Anyone know how ?

  3. gabstafari says:

    just update the jquery ui and jquery to the latest version and it will work on all browsers.

    enjoy

  4. Varinder says:

    Great work !!!
    Please share If you have any solution for IE9?

  5. John says:

    This doesn’t work in IE9 ?

  6. Dion says:

    Hi,

    I love this tutorial, but i keep getting this error:

    Warning: mysql_query() [function.mysql-query]: Access denied for user ‘dionjo’@'localhost’ (using password: NO) in /admin/updateList.php on line 10

    Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /admin/updateList.php on line 10
    Error, insert query failed

    how can i fix this?

    • falconerie says:

      you need it to edit the connect.php if you’re working on localhost, remove the password and change the user to ‘root’, change the database name.there you have it,

  7. d33pu says:

    awesome work :-)

  8. no more black tea says:

    IE9 breaks this. BUT it works in IE8

  9. oyun says:

    Its a very nice tutorial. It worked like. IT worked all browser Mozilla, Chrome, ie.. thanx for sharing.

  10. sabyasachi says:

    This really help full thanks a lots

  11. Paul says:

    I like your drag and drop. I was wondering if there could be a way that when something else is added to the list, that what ever item is under the mouse is removed and replaced with whatever is with the mouse.
    Example.
    I have 10 items. I have another item from another div, that I want in my list, but I want my new item to replace one in my list.
    Is there a way to do that?

    Thank you in advance.

  12. maxdimaz says:

    Hi .. How About it in Div not in UL ???
    how to make im try

    $(#somediv div)

    not working??

  13. Akki says:

    Hi Its a very nice tutorial It worked like charm in Mozilla and safari
    Can you please make it work in IE . Databse is not getting updated while working in IE.
    Looking for a fast reply..
    Thanks

  14. 35net says:

    It is very good, I like it much!

  15. Joe Hooker says:

    Your code isn’t displaying correctly. Thank you for the great tutorial though.

  16. Orson says:

    tks!!..so clear and useful

  17. Ant says:

    Hello, i keep getting this error -

    Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\jquery-drag-drop\index.php on line 65

    what arnt i doing properly? i’m all good with php but tbh i never really dabble with databases too much, but i’ll take any advice i can get i seriously love this effect and want it working!

  18. Michael says:

    Hey,
    very nice. But: How to drag n drop between 2 columns. Making 2 columns no problem. But want to take one to the other. How ?

  19. Iqrar says:

    Hello Could you please show me how to do that with images. DRAG AND DROP IMAGES AND SAVE POSITION?

  20. snappidagg says:

    I’m using images in a list, how would I save their position in mysql based on their images names?

  21. Cédric says:

    Hi !

    Thanks so much for that script ! It really helped me !

    I’m building some kind of “favorite bar”. People can navigate in their private area and then they can create some “shortcut” for the categories they want by dragging them in a specific area without destroying it from its original location.

    Then if the client adds a shortcut item, it would add a new record in the database, and delete it if the client removes it from the toolbar.

    Actually I don’t really need to save to current position of each item of the list but I’d like to save the info “is in the shortcut toolbar or not ?”.

    I’d really appreciate if you had any kind of advice !

    Thanks a lot.

    Cédric

  22. Juan says:

    This is absolutely fantastic, thank you!!

  23. Leyden says:

    the file opens okay with 7zip

  24. Mike says:

    Your download folder is invalid or corrupt. FYI. Can’t download.

  25. Rijo says:

    Nice tutorial… but i want it something like if i drag and drop to another table then that item would be saved to another database table. how can i achieve this

  26. Dhawal says:

    hey…really good tutorial…
    thanks man for uploading this tutorial

  27. vishal says:

    nice tutorial.

  28. Dior says:

    i want to put a condition for drag, for example if (ID < 5){let it drag}

    just run the action on items that meet the condition.

    Thanks…

  29. MundiSsa says:

    Olá Ashley,

    Excellent tutorial, I would like you to do a few more models of this function. How, drag the box freely and have the option to delete any box if you wish.

    I’m using this tutorial to see her if I can do what you say. If case you prepare a new tutorial or just know where some of the form that said, I would like to be informed.

    Congratulations on your Blog has an excellent range of scripts.

  30. eric says:

    Hey, thanks using this was a snap after hours lost in trying to find a simple and efficient list ordering solution. One question though, how can you possibly get it to work with pagination/paginated data say for instance you are dynamically generating the list from a table with 30 list items and you paginate with 10 per page and you are trying to:
    1. retain the overall order but change the order of the ten items in view (i.e. working on 2nd page with list items 11-20 reorder just that without influencing the rest of the pages){one way – get position of the first list item from db and equate to dollar count, is there a better way? }.
    2. reorder list items across the pages i.e. list item 12 in page 2 to move to list item 3 in page 1{possible solution but unable to work it out: move list item to top/bottom of page and have a link to move it up/down which swaps it with the last/first item on the previous/next page}.

    Any ideas would be greatly appreciated.

  31. abdu.tursun says:

    thanks!!!

  32. Den says:

    Hi Ashley! Nice tutorial! Thanks alot! Tell me please can I use it in commercial theme or plugin?

  33. John says:

    Is there anyway to convert this into multiple tables? For example, I’m trying to make a Team Picker (I’ve got everything working but the DB update). I would like 3 boxes, one for all the members and 2 more boxes for Teams. Using your drag and drop the user could take members from the first box and add them to a team. It would save to the DB and then next time the user comes back to the site she could see her teams she picked. Is this possible with your code?

  34. Ok i figure it out.

    when i downloaded the zip file it kept telling me it was corrupted.

    but when i unzip the file again, it gave me all the files i needed.

    thanks,

    going to tryit.

  35. When trying to download sample, the zip file says its corrupted.

    thanks,

  36. Indialike says:

    Very nice and useful tutorials for web designers,
    Thanks for posting.

  37. Pingback: 30+ 新鲜惊奇的 jQuery 插件与教程 | 芒果

  38. Ajmal says:

    Thanks Ashley.
    I just need it same thing. Good Efforts. Thanks.

  39. Enatom says:

    Absolutly amazing Ashley, thanks alot for this. It all worked out well. .. it was just a case of adding the extra field for the username clause.

    All in all jQuery syntax is still quite hard to understand with the )}; flying everywhere, but i hope to learn it all.

    Again thanks.

  40. Enatom says:

    Just wanted to say thanks, I haven’t tried it yet, but I think it will work.

    For the sake of anyone following this, ill post the results back in about 2 hours time.

    But, I think that this will have a tremendous effect on the Database. If only it had a save button instead of AJAX, anyway. I got the bare bones of how this work, so now since i know how it works, thanks to you.. I could improvise with it.

    Thanks alot for this drag and drop feature.

    • Ashley says:

      @Enatom No problem, happy to help. Please do post your solution up here. I’d be interested and im sure others will find it useful. Depending on how many users your going to have using this method it could get a little server intensive, it also depends on what server you have.

      Most quality hosts for example the mediatemple grid would be able to cope easily with hundreds if not thousands of simultaneous connections but it does depend on how efficient your code is.

  41. Enatom says:

    @Ashley

    so how would the PHP variable look like when taking in the javascript “username” var.

    I mean how would the SQL query look like in UpdateList.php ?

    i havent dealt with javascript and php interaction like this before.

    thanks

    • Ashley says:

      @Enatom so once you’ve added the code i wrote earlier, all you need to do is add the following to your updatelist.php file. Note that i’ve added mysql_escape_string(); this makes sure that no one can tamper with the data that is sent to the database.


      // here we save the posted data that was sent using javascript to the PHP variable $username
      $username = mysql_escape_string($_POST['username']);

      Once you add this line to the top of your update list page, you just need to add the queries that you posted originally and it should work fine.

      Let me know if that helps.

  42. Enatom says:

    Hi,

    Where it says (in updateList.php) :-

    $query = "UPDATE dragdrop SET listorder = " . $count . " WHERE id = " . $idval

    How do I send it another clause, so I can update the order of specific users own posts.

    I want it like this:

    $query = UPDATE dragdrop SET listorder = " . $count . " WHERE id = " . $idval." AND username=".$USERNAME

    im not sure how to pass that extra field (username) to updateList.php through from index.php.

    I hope you can help..
    enatom/com

    • Ashley says:

      @Enatom in order to post the username variable to the php page you’ll need to replace the following two lines:


      // var username is dummy data
      var username = 'ashley';

      // you can see that i've added the value username to be posted to the php page.
      var order = $(this).sortable("serialize") + '&update=update' + '&username=' + username;

      Let me know if you have any problems. I haven’t tested this but it should work.

      Just an update, I’ve just tested the code, if you view the demo above and use firebug you can see that it posts the username ‘ashley’ to the update php page.

  43. John S says:

    Hi,
    Beautiful. Any reason why you didn’t have a meta refresh built in? I know that’s what I’d like to do, but don’t know how to do it. The manual refresh kind of breaks the automagic coolness of this.

    Thanks,

    John

    • Ashley says:

      @john The message in the demo is just to show you that your list order has been added to the database. you don’t need to refresh the page at all, all the requests are done via ajax.

  44. Pingback: 30+ JQuery Plugins And Tutorials | oOrch Blog

  45. Anton says:

    Great work! I have one question. How to create sorting with 2 columns?

    • Ashley says:

      @Anton exactly the same as with one column, you basically need to duplicate the code but change the id’s and database, thats a dirty way of doing it, if your confident about editing JavaScript you’d need to modify the code to take 2 columns.

  46. Alan says:

    muy bueno amigo!!!
    super facil de entender y manipular. Exelente aporte!

  47. Pingback: 30+ 新鲜惊奇的 jQuery 插件与教程

  48. Pingback: 30+ Fresh & Amazing jQuery Plugins & Tutorials

  49. Pingback: 10 jQuery code snippets a programmer need daily | PHP tutorials and Scripts Collection

  50. Pingback: LimeSpace – IT » Die Links der Woche – Urlaub im August

  51. Pingback: 網站製作學習誌 » [Web] 連結分享

  52. Sunny Singh says:

    Wish this was built with Mootools though, maybe I can try converting somehow but at least the sql is all there and stuff.

  53. Pingback: Drag & Drop with PHP & jQuery | Choose Daily

  54. Pingback: Twitted by UltraMegaTech

  55. Pingback: CSS Brigit | Drag & Drop with PHP & jQuery

  56. Peter says:

    Nice post!! Thanks a lot

  57. Awesome!

    Cool site btw – just subscribed to your rss !

  58. Pingback: Drag & Drop with PHP & jQuery | Papermashup.com

  59. Pingback: Drag & Drop with PHP & jQuery | Papermashup.com « Netcrema - creme de la social news via digg + delicious + stumpleupon + reddit

  60. Could you do it so you could add more, and delete? Would be so nice!

  61. @Ashley – ah okay, now I get it.. Thanks :)

  62. Felix says:

    Realy usefull!!, thanks for share your code.

  63. Hey, thanks.. It’s very nice man – but it says “Refresh the page to see the changes”, but when I refresh, nothing happens?

    Thanks for it though :o )

    • Ashley says:

      @Brian it means refresh the page to see that your changes have been saved in the database and that the list is in the same order that you put them in :)

  64. Marc Falk says:

    Lovely! Just what I needed, thanks…

    Nice blog by the way ;)
    Cheers!

  65. Roy says:

    Nice tutorial/howto, will try it tonight!

    Offtopic: “It‘s quite in here! Why not leave a response?” > quite or quiet?

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>



Never miss an update from Papermashup

Get notified about the latest tutorials and downloads.

Subscribe by Email

Get alerts directly into your inbox after each post and stay updated.
Subscribe
OR

Subscribe by RSS

Add our RSS to your feedreader to get regular updates from us.
Subscribe

Get in contact

Please use the form below to get in contact. If your question is related to a free script download, please use the comments on the article page as community members are more likely to respond quicker than I can personally.

About Me

I'm Ashley Ford, Co-founder and Technical Director at Harkable.com London, UK. Previously I worked at InMobi, Spotify and MySpace. My interests include photography and making short videos I'm also an avid F1 fan. I'm always working on side projects. Here are a few: Easy Poll, We Deliver.



What do you specialise in?

I spend a lot of time coding in PHP and MySQL, as well as front end XHTML and CSS. I also specialise in javascript and the jQuery framework as well as being an avid designer. You can find me on dribbble

Interested in advertising?

If you'd like to advertise on Papermashup.com please get in touch via the contact link below for advertising opportunities.

How do I contact you

You can contact me here. and I'm available for consultation, freelance, programming book reviews.

Get on the mailing list

Join over 3000 people who have subscribed to the Papermashup inbox message, and be the first to find out about tutorial, competitions and giveaways.