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
22
wg-dialer/homepage/zeigeKostenListe.php
Normal file
22
wg-dialer/homepage/zeigeKostenListe.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?PHP // erfordert $von und $bis in Form von 20041231 ?>
|
||||
|
||||
<TABLE BORDER="1">
|
||||
<TR><TH>wer?</TH><TH>wieviel?</TH></TR>
|
||||
|
||||
<?PHP
|
||||
|
||||
foreach ($ALLENUTZER as $nutzer)
|
||||
{
|
||||
print '<TR><TD>' . $nutzer . '</TD><TD><DIV ALIGN="CENTER">';
|
||||
$erg = holeKostenDesNutzers($nutzer, $von, $bis);
|
||||
$cent = $erg % 100;
|
||||
if ($cent<10) $cent="0$cent";
|
||||
$euro = $erg/100;
|
||||
settype($euro,"integer");
|
||||
print $euro . ',' . $cent;
|
||||
print "</DIV></TD></TR>";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
</TABLE>
|
Loading…
Add table
Add a link
Reference in a new issue