die gute Einwahl- und Abrechnungsverwaltung fuer wg-netze
This commit is contained in:
parent
a8998763b3
commit
4c9a86a6d0
24 changed files with 2350 additions and 0 deletions
27
wg-dialer/homepage/nutzerStatus.php
Normal file
27
wg-dialer/homepage/nutzerStatus.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<BR>
|
||||
|
||||
<DIV ALIGN="CENTER">
|
||||
|
||||
<TABLE BORDER="0">
|
||||
|
||||
<TR><TH>Name</TH>
|
||||
<TH>IP</TH>
|
||||
<TH>Status</TH></TR>
|
||||
|
||||
<?PHP
|
||||
|
||||
foreach($ALLENUTZER as $nutzer)
|
||||
{
|
||||
$ip=holeIPdesNutzers($nutzer);
|
||||
$status=holeNutzerStatus($nutzer);
|
||||
print "<TR><TD>$nutzer</TD>";
|
||||
print "<TD>$ip</TD>";
|
||||
print "<TD>$status</TD></TR>";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
</TABLE>
|
||||
|
||||
</DIV>
|
||||
<BR>
|
Loading…
Add table
Add a link
Reference in a new issue