Introduction

Ajoutez un dossier evaluations à votre dossier langage.

Dans le dossier evaluations, ajoutez le fichier liste.php.

1
<?php
2
$listeNombres = [12, 15, 2, 17, 34, 19, 21, 14, 54, 9];
3
4
$listeMots = ['bonjour', 'hello', 'matin', 'soir', 'journée', 'maintenant', 'après'];
5
6
$listePersonnes = [
7
    ['id' => '8', 'nom' => 'Aule', 'prenom' => 'Lucie', 'age' => '45'],
8
    ['id' => '9', 'nom' => 'Ball', 'prenom' => 'Annie', 'age' => '24'],
9
    ['id' => '10', 'nom' => 'Bon', 'prenom' => 'Jean', 'age' => '65'],
10
    ['id' => '11', 'nom' => 'Braisile', 'prenom' => 'France', 'age' => '13'],
11
    ['id' => '19', 'nom' => 'Céler', 'prenom' => 'Jacques', 'age' => '17'],
12
    ['id' => '21', 'nom' => 'Desbois', 'prenom' => 'Robin', 'age' => '56'],
13
    ['id' => '32', 'nom' => 'Sapin', 'prenom' => 'Noël', 'age' => '12'],
14
    ['id' => '33', 'nom' => 'Nade', 'prenom' => 'Marie', 'age' => '65'],
15
    ['id' => '35', 'nom' => 'Heau', 'prenom' => 'Charles', 'age' => '65'],
16
    ['id' => '36', 'nom' => 'Tation', 'prenom' => 'Félicie', 'age' => '34'],
17
    ['id' => '37', 'nom' => 'Reneaux', 'prenom' => 'Mégane', 'age' => '34'],
18
    ['id' => '38', 'nom' => 'Kiroule', 'prenom' => 'Pierre', 'age' => '63'],
19
    ['id' => '39', 'nom' => 'Deschamps', 'prenom' => 'Rose', 'age' => '23']
20
];
21
22