profil_affichage.php 1.62 KB
<?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>