1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| <script>
$(function() {
$( ".essai li" ).draggable({
appendTo: "body",
revert: 'invalid'
});
$( "#cart ol" ).droppable({
drop: function( event, ui ) {
$(this).find( ".placeholder" ).remove();
$(ui.draggable).hide();
$( "<li></li>" ).text(ui.draggable.text()).appendTo(this);
}
});
});
$(function(){
$('.myButton').click(function(e){
var list = [];
$('#cart').find('ol.ui-droppable li').each(function(){
list.push($(this).html());
});
$.ajax({
type : 'POST',
url : 'createpdf.php',
dataType: 'JSON',
data : { myData: JSON.stringify(list) }
});
});
});
</script>
<a href="createpdf.php" class="myButton">Get PDF tables</a>
createpdf.php
<?php
$myArrayPhp = json_decode($_POST['myData']);
echo $myArrayPhp[0];
?> |
Partager