Bonjour a tous
je voudrais a partir de ce fichier xml acceder a une liste me proposant les collaborateurs et une autre me proposant les projets (sans aller dans les details de chacun)
quelqu'un aurait une idée svp???
je suis bloqué
Merci beaucoup de m'aider

Code : 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="UTF-8"?>
<Données>
    <Projets>
        <Projet>
            <Projet_id>1</Projet_id>
            <nom>Projet1</nom>
            <Code>PRO1</Code>        
        </Projet>
        <Projet>
            <Projet_id>2</Projet_id>
            <nom>Projet2</nom>
            <code>PRO2</code>
        </Projet>
        <Projet>
            <Projet_id>3</Projet_id>
            <nom>Projet3</nom>>
            <code>PRO3</code>
        </Projet>
        <Projet>
            <Projet_id>4</Projet_id>
            <nom>Projet4</nom>
            <Code>PRO4</Code>        
        </Projet>
        <Projet>
            <Projet_id>5</Projet_id>
            <nom>Projet5</nom>
            <code>PRO5</code>
        </Projet>
        <Projet>
            <Projet_id>6</Projet_id>
            <nom>Projet6</nom>>
            <code>PRO6</code>
        </Projet>
        <Projet>
            <Projet_id>7</Projet_id>
            <nom>Projet7</nom>
            <Code>PRO7</Code>        
        </Projet>
        <Projet>
            <Projet_id>8</Projet_id>
            <nom>Projet8</nom>
            <code>PRO8</code>
        </Projet>
        <Projet>
            <Projet_id>9</Projet_id>
            <nom>Projet9</nom>>
            <code>PRO9</code>
        </Projet>
    </Projets>
    <Collaborateurs>
        <Collaborateur>
            <nom>nom0</nom>
            <prenom>prenom0</prenom>
            <profil>profil1</profil>
        </Collaborateur>
        <Collaborateur>
            <nom>nom1</nom>
            <prenom>prenom1</prenom>
            <profil>profil0</profil>
        </Collaborateur>
        <Collaborateur>
            <nom>nom2</nom>
            <prenom>prenom2</prenom>
            <profil>profil2</profil>
        </Collaborateur>
        <Collaborateur>
            <nom>nom3</nom>
            <prenom>prenom3</prenom>
            <profil>profil1</profil>
        </Collaborateur>
        <Collaborateur>
            <nom>nom4</nom>
            <prenom>prenom4</prenom>
            <profil>profil2</profil>
        </Collaborateur>
        <Collaborateur>
            <nom>nom5</nom>
            <prenom>prenom5</prenom>
            <profil>profil1</profil>
        </Collaborateur>
        <Collaborateur>
            <nom>nom6</nom>
            <prenom>prenom6</prenom>
            <profil>profil0</profil>
        </Collaborateur>
        <Collaborateur>
            <nom>nom7</nom>
            <prenom>prenom7</prenom>
            <profil>profil1</profil>
        </Collaborateur>
        <Collaborateur>
            <nom>nom8</nom>
            <prenom>prenom8</prenom>
            <profil>profil3</profil>
        </Collaborateur>
        <Collaborateur>
            <nom>nom9</nom>
            <prenom>prenom9</prenom>
            <profil>profil2</profil>
        </Collaborateur>
    </Collaborateurs>
</Données>