354c05a4ddd678c49bcbba458bffa7d13482139a
Bernd Wurst Funktion um Name und Adress...

Bernd Wurst authored 10 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

5) Written by schokokeks.org Hosting, namely
Bernd Wurst Funktion um Name und Adress...

Bernd Wurst authored 10 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

9) This code is published under a 0BSD license.
Bernd Wurst Funktion um Name und Adress...

Bernd Wurst authored 10 years ago

10) 
11) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
12) */
13) 
14) require_once('inc/base.php');
15) require_once('inc/debug.php');
16) 
17) require_once('invoice.php');
18) 
19) $kundenname = $_SESSION['customerinfo']['name'];
20) $id = (int) $_SESSION['customerinfo']['customerno'];
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

21) $result = db_query("SELECT CONCAT(adresse, '\\\\n', plz, ' ', ort) AS adresse FROM kundendaten.kunden WHERE id=?", [$id]);
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

22) $r = $result->fetch();
Bernd Wurst Funktion um Name und Adress...

Bernd Wurst authored 10 years ago

23) 
24) header("Content-Type: text/javascript");
Hanno Böck Spaces between string conca...

Hanno Böck authored 6 months ago

25) echo ' { "kundenname": "' . $kundenname . '", "adresse": "' . $r["adresse"] . '" } ';