Php

Fermé
Dimitrii Messages postés 686 Date d'inscription lundi 4 février 2008 Statut Membre Dernière intervention 24 août 2013 - 3 mars 2009 à 13:47
Dimitrii Messages postés 686 Date d'inscription lundi 4 février 2008 Statut Membre Dernière intervention 24 août 2013 - 3 mars 2009 à 13:48
Bonjour,

voici mon code :

<html>
<body>

<?php

$ip='192.168.x.x';
$communaute='public';

$resultat=snmpwalk($ip, $communaute,'.1.3.6.1.2.1.31.1.1.1.18');

foreach ($resultat as $idx=>$val) {
echo "$idx=$val<br>";
}


?>

</html>
</body>

voici le résultat :

0=STRING:
1=STRING: vers Internet
2=STRING: vers DMZ AFIB
3=STRING:
4=STRING:
5=STRING:
6=STRING:
7=STRING:
8=STRING:
9=STRING:
10=STRING:
11=STRING:
12=STRING:
13=STRING:
14=STRING:
15=STRING:
16=STRING:
17=STRING:
18=STRING:
19=STRING:
20=STRING:
21=STRING:
22=STRING:
23=STRING:
24=STRING:
25=STRING: SRV1 (11)
26=STRING: SRV2 (12)
27=STRING:


J'aimerais afficher tous ça dans un tableau :s commen faire ?
A voir également:

1 réponse

Dimitrii Messages postés 686 Date d'inscription lundi 4 février 2008 Statut Membre Dernière intervention 24 août 2013 21
3 mars 2009 à 13:48
je ne sais pas ou mettre mes balises pour le tableau :s
0