Begynder spg.: Udskrive to værdier
HejsaHvem kan hjælpe mig med et XMLDOM-script (asp), som udskriver kanalens navn og antal af chattere - for de forskellige kanaler, dvs.:
Kanal 1
Chattere: 2
Kanal 2
Chattere: 1
Kanal 3
Chattere: 10
Osv.
______________________________________________
<?xml version="1.0" ?>
- <solarstats>
- <channellist>
- <channel name="#kanal1">
<topic />
<users current="2" />
<modes>+tr</modes>
</channel>
- <channel name="#kanal2">
<topic />
<users current="1" />
<modes>+tr</modes>
</channel>
- <channel name="#kanal3">
<topic />
<users current="10" />
<modes>+tr</modes>
</channel>
- <channel name="#kanal4">
<topic>Fri chat</topic>
<users current="11" />
<modes>+ntrf</modes>
</channel>
- <channel name="#kanal5">
<topic>Fri snak og hygge :-)</topic>
<users current="13" />
<modes>+ntrfG</modes>
</channel>
</channellist>
</solarstats>
