test.php 1.02 KB
Newer Older
Raulin's avatar
Raulin committed
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
<!-- <head>
<script type="text/javascript">
      $(document).ready(function() {
        Alert.alert("func");
        $.getJSON('https://eden.imt-lille-douai.fr/~charlotte.raulin/Projet/api/afficher_aliments.php',
                function(json){
                    Alert.alert("get");
                    for (let i = 0; pas < 2; pas++){
                        Alert.alert("hey");
                        $('#test').append(json[i][1]+'<br>'+json[i][2]);
                    }
                };  
            );
      } );
</script>
</head>

<div id="test">hallo</div>
<script type="text/javascript">
        function getAliments(){
            $.getJSON('https://eden.imt-lille-douai.fr/~charlotte.raulin/Projet/api/afficher_aliments.php',
                function(json){
                    for (let i = 0; pas < 2; pas++){
                        alert(json[1][1]);
                        $('#test').append(json[i][1]+'<br>'+json[i][2]);
                    }
                };  
            );
        }
        getAliments();
</script> -->