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
<?php
session_start();
?>
</script>
<script type="text/javascript">
$(document).ready( function() {
$.getJSON('https://eden.imt-lille-douai.fr/~liang.wu/API_LOGIN/identite/read_one.php?login=$_SESSION['login']',
function(json){
// console.log(json);
table = $('#tbody_info');
table.html('');
// cf. https://api.jquery.com/jQuery.getJSON/
$.each( json, function( key, val ) {
table.append('<tr><td>'+val['id']+'</td><td>'+val['login']+'</td><td>'+val['password']+'</td><td>'+val['pseudo']+'</td><td>'+val['âge']+'</td><td>'+val['poids']+'</td><td>'+val['taille']+'</td><td>'+val['sexe']+'</td><td>'+val['niveau_du_sport']+'</td><td><button type='submit' class='update'>Modifier</button></td><td><button type='submit' class='delete'>Supprimer</button></td></tr>');
});
}
);
</script>
<head>
<div style="margin-right:100px">
<table id="table_info" class="dataTable" style="color : #212529; ">
<thead>
<tr>
<th>id</th>
<th>login</th>
<th>password</th>
<th>pseudo</th>
<th>âge</th>
<th>poids</th>
<th>taille</th>
<th>sexe</th>
<th>niveau_du_sport</th>
<th>modifier</th>
<th>supprimer</th>
</tr>
</thead>
<tbody id="tbody_info"><tbody>
</table>
</div>
</head>