XML naar $display['item']

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Mitchell van de Ree

Mitchell van de Ree

08/03/2013 20:07:58
Quote Anchor link
Hee allemaal!

Ik zit met een probleem in de maag. Ik wil namelijk een webpagina maken met een custom layout met informatie van mijn Hosting computer daarop. Ik heb op de hostingcomputer (externe url) PHPSysInfo geïnstalleerd en dat werkt fantastisch. Nu wil ik alleen via de XML van PHPSysInfo de gegevens op mijn website zetten. (Denk aan een balk met ruimte, enz.) Dus dat je niet de standaard PHPSysInfo in een iframe moet zetten ofzo, ziet er niet uit.

De XML van PHPSysInfo
Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
Array
(
    [tns:phpsysinfo] => Array
        (
            [Generation] => Array
                (
                )

            [Generation_attr] => Array
                (
                    [version] => 3.1.2
                    [timestamp] => 1362769273
                )

            [Options] => Array
                (
                )

            [Options_attr] => Array
                (
                    [tempFormat] => c
                    [byteFormat] => auto_binary
                    [refresh] => 60000
                    [showPickListTemplate] => true
                    [showPickListLang] => true
                )

            [UsedPlugins] => Array
                (
                )

            [Vitals] => Array
                (
                )

            [Vitals_attr] => Array
                (
                    [Hostname] => *Hostname*
                    [IPAddr] => *IP*
                    [Kernel] => 6.1.7600
                    [Distro] => Microsoft Windows 7 Ultimate
                    [Distroicon] => WinVista.png
                    [Uptime] => 203268
                    [Users] => 1
                    [LoadAvg] => 38
                    [SysLang] => Dutch - Netherlands (1043)
                    [CodePage] => windows-1252
                )

            [Network] => Array
                (
                    [NetDevice] => Array
                        (
                            [0] => Array
                                (
                                )

                            [1] => Array
                                (
                                )

                            [0_attr] => Array
                                (
                                    [Name] => Intel[R] PRO_1000 MT-netwerkverbinding
                                    [RxBytes] => 957595725
                                    [TxBytes] => 1474000837
                                    [Err] => 0
                                    [Drops] => 0
                                )

                            [1_attr] => Array
                                (
                                    [Name] => Intel[R] PRO_1000 PM-netwerkverbinding
                                    [RxBytes] => 88822522
                                    [TxBytes] => 67779834
                                    [Err] => 0
                                    [Drops] => 29
                                )

                            [2] => Array
                                (
                                )

                            [2_attr] => Array
                                (
                                    [Name] => Intel[R] PRO_1000 GT Desktop-adapter
                                    [RxBytes] => 0
                                    [TxBytes] => 0
                                    [Err] => 0
                                    [Drops] => 0
                                )

                            [3] => Array
                                (
                                )

                            [3_attr] => Array
                                (
                                    [Name] => *Hostname*
                                    [RxBytes] => 0
                                    [TxBytes] => 0
                                    [Err] => 0
                                    [Drops] => 0
                                )

                            [4] => Array
                                (
                                )

                            [4_attr] => Array
                                (
                                    [Name] => Teredo Tunneling Pseudo-Interface
                                    [RxBytes] => 33760
                                    [TxBytes] => 30309
                                    [Err] => 0
                                    [Drops] => 0
                                )

                        )

                )

            [Hardware] => Array
                (
                    [PCI] => Array
                        (
                            [Device] => Array
                                (
                                    [0] => Array
                                        (
                                        )

                                    [1] => Array
                                        (
                                        )

                                    [0_attr] => Array
                                        (
                                            [Name] => Intel(R) PRO/1000 MT-netwerkverbinding
                                            [Count] => 1
                                        )

                                    [1_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801GB/GR/GH (ICH7 Family) Serial ATA Storage Controller - 27C0
                                            [Count] => 1
                                        )

                                    [2] => Array
                                        (
                                        )

                                    [2_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801G (ICH7 Family) Ultra ATA Storage Controllers - 27DF
                                            [Count] => 1
                                        )

                                    [3] => Array
                                        (
                                        )

                                    [3_attr] => Array
                                        (
                                            [Name] => Intel(R) PRO/1000 GT Desktop-adapter
                                            [Count] => 1
                                        )

                                    [4] => Array
                                        (
                                        )

                                    [4_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
                                            [Count] => 1
                                        )

                                    [5] => Array
                                        (
                                        )

                                    [5_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801GR/GH/GHM (ICH7 Family) PCI Express Root Port - 27E0
                                            [Count] => 1
                                        )

                                    [6] => Array
                                        (
                                        )

                                    [6_attr] => Array
                                        (
                                            [Name] => Intel(R) PRO/1000 PM-netwerkverbinding
                                            [Count] => 1
                                        )

                                    [7] => Array
                                        (
                                        )

                                    [7_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9
                                            [Count] => 1
                                        )

                                    [8] => Array
                                        (
                                        )

                                    [8_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801GR/GH/GHM (ICH7 Family) PCI Express Root Port - 27E2
                                            [Count] => 1
                                        )

                                    [9] => Array
                                        (
                                        )

                                    [9_attr] => Array
                                        (
                                            [Name] => IPMI Interface
                                            [Count] => 1
                                        )

                                    [10] => Array
                                        (
                                        )

                                    [10_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA
                                            [Count] => 1
                                        )

                                    [11] => Array
                                        (
                                        )

                                    [11_attr] => Array
                                        (
                                            [Name] => PCI Serial Port
                                            [Count] => 1
                                        )

                                    [12] => Array
                                        (
                                        )

                                    [12_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
                                            [Count] => 1
                                        )

                                    [13] => Array
                                        (
                                        )

                                    [13_attr] => Array
                                        (
                                            [Name] => Standaard-VGA grafische adapter
                                            [Count] => 1
                                        )

                                    [14] => Array
                                        (
                                        )

                                    [14_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801 PCI Bridge - 244E
                                            [Count] => 1
                                        )

                                    [15] => Array
                                        (
                                        )

                                    [15_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
                                            [Count] => 1
                                        )

                                    [16] => Array
                                        (
                                        )

                                    [16_attr] => Array
                                        (
                                            [Name] => Silicon Image SiI 3512 SATALink Controller
                                            [Count] => 1
                                        )

                                    [17] => Array
                                        (
                                        )

                                    [17_attr] => Array
                                        (
                                            [Name] => Intel(R) E7230/3000/3010 Processor to I/O Controller - 2778
                                            [Count] => 1
                                        )

                                    [18] => Array
                                        (
                                        )

                                    [18_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801G (ICH7 Family) PCI Express Root Port - 27D0
                                            [Count] => 1
                                        )

                                    [19] => Array
                                        (
                                        )

                                    [19_attr] => Array
                                        (
                                            [Name] => Intel(R) 6702PXH PCI Express-to-PCI Bridge A - 032C
                                            [Count] => 1
                                        )

                                    [20] => Array
                                        (
                                        )

                                    [20_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801GB/GR (ICH7 Family) LPC Interface Controller - 27B8
                                            [Count] => 1
                                        )

                                    [21] => Array
                                        (
                                        )

                                    [21_attr] => Array
                                        (
                                            [Name] => Intel(R) 82801G (ICH7 Family) SMBus Controller - 27DA
                                            [Count] => 1
                                        )

                                )

                        )

                    [USB] => Array
                        (
                            [Device] => Array
                                (
                                )

                            [Device_attr] => Array
                                (
                                    [Name] => USB-hoofdhub
                                    [Count] => 5
                                )

                        )

                    [IDE] => Array
                        (
                            [Device] => Array
                                (
                                    [0] => Array
                                        (
                                        )

                                    [1] => Array
                                        (
                                        )

                                    [0_attr] => Array
                                        (
                                            [Name] => TSSTcorp DVD-ROM SH-D162D ATA Device
                                            [Count] => 1
                                        )

                                    [1_attr] => Array
                                        (
                                            [Name] => ST3500320NS ATA Device
                                            [Count] => 1
                                        )

                                )

                        )

                    [SCSI] => Array
                        (
                        )

                    [CPU] => Array
                        (
                            [CpuCore] => Array
                                (
                                    [0] => Array
                                        (
                                        )

                                    [1] => Array
                                        (
                                        )

                                    [0_attr] => Array
                                        (
                                            [Model] => Intel(R) Xeon(R) CPU           X3210  @ 2.13GHz
                                            [CpuSpeed] => 2128
                                            [BusSpeed] => 266
                                            [Cache] => 8388608
                                        )

                                    [1_attr] => Array
                                        (
                                            [Model] => Intel(R) Xeon(R) CPU           X3210  @ 2.13GHz
                                            [CpuSpeed] => 2128
                                            [BusSpeed] => 266
                                            [Cache] => 8388608
                                        )

                                    [2] => Array
                                        (
                                        )

                                    [2_attr] => Array
                                        (
                                            [Model] => Intel(R) Xeon(R) CPU           X3210  @ 2.13GHz
                                            [CpuSpeed] => 2128
                                            [BusSpeed] => 266
                                            [Cache] => 8388608
                                        )

                                    [3] => Array
                                        (
                                        )

                                    [3_attr] => Array
                                        (
                                            [Model] => Intel(R) Xeon(R) CPU           X3210  @ 2.13GHz
                                            [CpuSpeed] => 2128
                                            [BusSpeed] => 266
                                            [Cache] => 8388608
                                        )

                                )

                        )

                )

            [Memory] => Array
                (
                    [Details] => Array
                        (
                        )

                    [Swap] => Array
                        (
                            [Mount] => Array
                                (
                                )

                            [Mount_attr] => Array
                                (
                                    [MountPointID] => 1
                                    [FSType] => swap
                                    [Name] => SWAP
                                    [Free] => 1827667968
                                    [Used] => 315621376
                                    [Total] => 2143289344
                                    [Percent] => 15
                                    [MountPoint] => C:\pagefile.sys
                                )

                        )

                    [Swap_attr] => Array
                        (
                            [Free] => 1827667968
                            [Used] => 315621376
                            [Total] => 2143289344
                            [Percent] => 15
                        )

                )

            [Memory_attr] => Array
                (
                    [Free] => 1112080384
                    [Used] => 1031331840
                    [Total] => 2143412224
                    [Percent] => 49
                )

            [FileSystem] => Array
                (
                    [Mount] => Array
                        (
                            [0] => Array
                                (
                                )

                            [1] => Array
                                (
                                )

                            [0_attr] => Array
                                (
                                    [MountPointID] => 1
                                    [FSType] =>
                                    [Name] => Removable Disk (3 1/2 in.)
                                    [Free] => 0
                                    [Used] => 0
                                    [Total] => 0
                                    [Percent] => 0
                                    [MountPoint] => A:
                                )

                            [1_attr] => Array
                                (
                                    [MountPointID] => 2
                                    [FSType] => NTFS
                                    [Name] => Local Disk
                                    [Free] => 8995835904
                                    [Used] => 355159924736
                                    [Total] => 364155760640
                                    [Percent] => 98
                                    [MountPoint] => C:
                                )

                            [2] => Array
                                (
                                )

                            [2_attr] => Array
                                (
                                    [MountPointID] => 3
                                    [FSType] =>
                                    [Name] => Compact Disc
                                    [Free] => 0
                                    [Used] => 0
                                    [Total] => 0
                                    [Percent] => 0
                                    [MountPoint] => D:
                                )

                            [3] => Array
                                (
                                )

                            [3_attr] => Array
                                (
                                    [MountPointID] => 4
                                    [FSType] => NTFS
                                    [Name] => Local Disk
                                    [Free] => 95008272384
                                    [Used] => 16695476224
                                    [Total] => 111703748608
                                    [Percent] => 15
                                    [MountPoint] => E:
                                )

                            [4] => Array
                                (
                                )

                            [4_attr] => Array
                                (
                                    [MountPointID] => 5
                                    [FSType] => NTFS
                                    [Name] => Local Disk
                                    [Free] => 23183179776
                                    [Used] => 1061990400
                                    [Total] => 24245170176
                                    [Percent] => 5
                                    [MountPoint] => F:
                                )

                        )

                )

            [MBInfo] => Array
                (
                )

            [UPSInfo] => Array
                (
                )

            [Plugins] => Array
                (
                )

            [Errors] => Array
                (
                )

        )

    [tns:phpsysinfo_attr] => Array
        (
            [xmlns:tns] => http://phpsysinfo.sourceforge.net/
            [xmlns:xsi] => http://www.w3.org/2001/XMLSchema-instance
            [xsi:schemaLocation] => http://phpsysinfo.sourceforge.net/phpsysinfo3.xsd
        )

)


En nu is mijn bedoeling om van deze XML pagina (URL!) op een PHP pagina naar $array['key'] te gaan. Alleen ik heb geen idee hoe ik dat in elkaar moet fietsen.

Ik wil dus de CPU, Mounts, Memmory, SWAP, Vitals_attr en de Networks laten zien door middel van die $array['key'].

Kan iemand me op weg helpen?
Alvast bedankt!
 
PHP hulp

PHP hulp

28/03/2024 17:12:37
 
Eddy E

Eddy E

08/03/2013 21:15:30
Quote Anchor link
Dit al in Google ingetypt: php xml to array?
Geeft je SimpleXML.

Maar ik neem aan dat je code-blok hierboven GEEN directe output (tekst) is van een URL.
Zo wel: kijk ook even naar str_split() etc.
Of makkelijker, maar dan moet je zeker weten wat je binnenkrijgt: eval()

Direct van StackOverflow (2e hit op Google):

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
<?php
$whatever
= "array('Test','Blah')";
$parsed = eval("return " . $whatever . ";");
echo $parsed[1]; //This will be "Blah"
?>


En in $whatever kan je natuurlijk die tekst gooien via file_get_contents() of iets dergelijks.
Gewijzigd op 08/03/2013 21:16:11 door Eddy E
 
Mitchell van de Ree

Mitchell van de Ree

10/03/2013 14:20:18
Quote Anchor link
Zo ziet de XML file eruit:

Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
<tns:phpsysinfo xmlns:tns="http://phpsysinfo.sourceforge.net/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://phpsysinfo.sourceforge.net/phpsysinfo3.xsd">
<Generation version="3.1.2" timestamp="1362867376"/>
<Options tempFormat="c" byteFormat="auto_binary" refresh="60000" showPickListTemplate="true" showPickListLang="true"/>
<UsedPlugins/>
<Vitals Hostname="*hostname*" IPAddr="*ipadres*" Kernel="6.1.7600" Distro="Microsoft Windows 7 Ultimate" Distroicon="WinVista.png" Uptime="6512" Users="1" LoadAvg="1" SysLang="Dutch - Netherlands (1043)" CodePage="windows-1252"/>
<Network>
<NetDevice Name="Intel[R] PRO_1000 MT-netwerkverbinding" RxBytes="10877460" TxBytes="21518008" Err="0" Drops="0"/>
<NetDevice Name="Intel[R] PRO_1000 PM-netwerkverbinding" RxBytes="3938369" TxBytes="5517236" Err="0" Drops="3"/>
<NetDevice Name="Intel[R] PRO_1000 GT Desktop-adapter" RxBytes="0" TxBytes="0" Err="0" Drops="0"/>
<NetDevice Name="*dynamic*" RxBytes="0" TxBytes="0" Err="0" Drops="0"/>
<NetDevice Name="Teredo Tunneling Pseudo-Interface" RxBytes="912" TxBytes="748" Err="0" Drops="0"/>
</Network>
<Hardware>
<PCI>
<Device Name="Intel(R) PRO/1000 MT-netwerkverbinding" Count="1"/>
<Device Name="Intel(R) 82801GB/GR/GH (ICH7 Family) Serial ATA Storage Controller - 27C0" Count="1"/>
<Device Name="Intel(R) 82801G (ICH7 Family) Ultra ATA Storage Controllers - 27DF" Count="1"/>
<Device Name="Intel(R) PRO/1000 GT Desktop-adapter" Count="1"/>
<Device Name="Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8" Count="1"/>
<Device Name="Intel(R) 82801GR/GH/GHM (ICH7 Family) PCI Express Root Port - 27E0" Count="1"/>
<Device Name="Intel(R) PRO/1000 PM-netwerkverbinding" Count="1"/>
<Device Name="Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9" Count="1"/>
<Device Name="Intel(R) 82801GR/GH/GHM (ICH7 Family) PCI Express Root Port - 27E2" Count="1"/>
<Device Name="IPMI Interface" Count="1"/>
<Device Name="Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA" Count="1"/>
<Device Name="PCI Serial Port" Count="1"/>
<Device Name="Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB" Count="1"/>
<Device Name="Standaard-VGA grafische adapter" Count="1"/>
<Device Name="Intel(R) 82801 PCI Bridge - 244E" Count="1"/>
<Device Name="Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC" Count="1"/>
<Device Name="Silicon Image SiI 3512 SATALink Controller" Count="1"/>
<Device Name="Intel(R) E7230/3000/3010 Processor to I/O Controller - 2778" Count="1"/>
<Device Name="Intel(R) 82801G (ICH7 Family) PCI Express Root Port - 27D0" Count="1"/>
<Device Name="Intel(R) 6702PXH PCI Express-to-PCI Bridge A - 032C" Count="1"/>
<Device Name="Intel(R) 82801GB/GR (ICH7 Family) LPC Interface Controller - 27B8" Count="1"/>
<Device Name="Intel(R) 82801G (ICH7 Family) SMBus Controller - 27DA" Count="1"/>
</PCI>
<USB>
<Device Name="USB-hoofdhub" Count="5"/>
</USB>
<IDE>
<Device Name="TSSTcorp DVD-ROM SH-D162D ATA Device" Count="1"/>
<Device Name="ST3500320NS ATA Device" Count="1"/>
</IDE>
<SCSI/>
<CPU>
<CpuCore Model="Intel(R) Xeon(R) CPU X3210 @ 2.13GHz" CpuSpeed="2128" BusSpeed="266" Cache="8388608"/>
<CpuCore Model="Intel(R) Xeon(R) CPU X3210 @ 2.13GHz" CpuSpeed="2128" BusSpeed="266" Cache="8388608"/>
<CpuCore Model="Intel(R) Xeon(R) CPU X3210 @ 2.13GHz" CpuSpeed="2128" BusSpeed="266" Cache="8388608"/>
<CpuCore Model="Intel(R) Xeon(R) CPU X3210 @ 2.13GHz" CpuSpeed="2128" BusSpeed="266" Cache="8388608"/>
</CPU>
</Hardware>
<Memory Free="1404940288" Used="738471936" Total="2143412224" Percent="35">
<Details/>
<Swap Free="1927282688" Used="216006656" Total="2143289344" Percent="11">
<Mount MountPointID="1" FSType="swap" Name="SWAP" Free="1927282688" Used="216006656" Total="2143289344" Percent="11" MountPoint="C:\pagefile.sys"/>
</Swap>
</Memory>
<FileSystem>
<Mount MountPointID="1" FSType="" Name="Removable Disk (3 1/2 in.)" Free="0" Used="0" Total="0" Percent="0" MountPoint="A:"/>
<Mount MountPointID="2" FSType="NTFS" Name="Local Disk" Free="8615305216" Used="355540455424" Total="364155760640" Percent="98" MountPoint="C:"/>
<Mount MountPointID="3" FSType="" Name="Compact Disc" Free="0" Used="0" Total="0" Percent="0" MountPoint="D:"/>
<Mount MountPointID="4" FSType="NTFS" Name="Local Disk" Free="95008272384" Used="16695476224" Total="111703748608" Percent="15" MountPoint="E:"/>
<Mount MountPointID="5" FSType="NTFS" Name="Local Disk" Free="23183179776" Used="1061990400" Total="24245170176" Percent="5" MountPoint="F:"/>
</FileSystem>
<MBInfo/>
<UPSInfo/>
<Plugins/>
<Errors/>
</tns:phpsysinfo>
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.