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
31
wg-dialer/homepage/zeigeKosten.php
Normal file
31
wg-dialer/homepage/zeigeKosten.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?PHP require_once("definitionen.php"); ?>
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Kostenübersicht</TITLE>
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
|
||||
<BR><H2><DIV ALIGN="CENTER"><A HREF="index.php">zurück zur Startseite</A></DIV></H2><BR>
|
||||
<HR><BR>
|
||||
<DIV ALIGN="CENTER">
|
||||
|
||||
<?PHP
|
||||
|
||||
include("zeigeKostenFormular.php");
|
||||
if (isset($HTTP_POST_VARS["Anzeige"]))
|
||||
{
|
||||
$von=$HTTP_POST_VARS["vJahr"]*10000+$HTTP_POST_VARS["vMonat"]*100+$HTTP_POST_VARS["vTag"];
|
||||
$bis=$HTTP_POST_VARS["bJahr"]*10000+$HTTP_POST_VARS["bMonat"]*100+$HTTP_POST_VARS["bTag"];
|
||||
print '<BR><HR><BR>';
|
||||
include("zeigeKostenListe.php");
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
</DIV>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
Loading…
Add table
Add a link
Reference in a new issue