Datenstand V1.0

This commit is contained in:
2016-07-05 20:38:34 +00:00
parent 5a75f609e5
commit 5ea463a308
1027 changed files with 141480 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<?php
$sql = "SELECT ".PREFIX."_Rechnungen.Jahr, ".PREFIX."_Rechnungen.ID, ".PREFIX."_Kontakte.Firma, ".PREFIX."_Kontakte.Nachname, ".PREFIX."_Kontakte.Vorname FROM ".PREFIX."_Rechnungen LEFT JOIN ".PREFIX."_Kontakte ON ".PREFIX."_Rechnungen.Kontakt_ID = ".PREFIX."_Kontakte.ID ".$Abfrage." ORDER BY ".PREFIX."_Rechnungen.Jahr DESC, ".PREFIX."_Rechnungen.ID DESC;";
$result = $db->query($sql);
include "inhalte/sv_overview.php";
?>