Bonjour,

J'aurai besoin de votre aide, je suis novice en Java et j'ai vraiment besoin d'utiliser un code trouvé sur internet. pourriez vous m'aider ?
A force de bidouille j'ai réussit a mettre en piste le super tableau que propose ce site:
https://johnny.github.io/jquery-sortable/#

Nom : dragndrop_table.png
Affichages : 390
Taille : 11,0 Ko

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
  <head>
    <title>jQuery Sortable</title>
 
    <link href='https://johnny.github.io/jquery-sortable/css/application.css' rel='stylesheet'>
  </head>
  <body>
 
    <div class='bootstrap-container'>
 
      <div id='features'>
        <div class='row'>
 
          <div class='span6'>
 
 
            <ol class='default vertical'>
              <li>
                First
                <ol></ol>
              </li>
              <li>
                Second
                <ol></ol>
              </li>
              <li>
                Third
                <ol>
                  <li>First</li>
                  <li>Second</li>
                  <li>
                    Third
                    <ol>
                      <li>First</li>
                      <li>Second</li>
                    </ol>
                    <ol>
                      <li>First</li>
                      <li>Second</li>
                    </ol>
                  </li>
                </ol>
              </li>
              <li>Fourth</li>
              <li>Fifth</li>
              <li>Sixth</li>
            </ol>
          </div>
        </div>
      </div>
 
 
    </div>
 
    	<script src='https://johnny.github.io/jquery-sortable/js/application.js'></script>
 
  </body>
</html>

Comment puis je faire pour que le tableau alimente une table MYSQL ?


merci d'avance