174c4e60d4f51f5c959e47d7bc4aaf2a9a64a22a
Bernd Wurst Vervollständige Bankname un...

Bernd Wurst authored 10 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2013 by schokokeks.org Hosting, namely
6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) 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.
15) */
16) 
17) require_once('inc/base.php');
18) require_once('inc/debug.php');
19) 
20) require_once('invoice.php');
21) 
22) 
Bernd Wurst Ermögliche das Berechnen de...

Bernd Wurst authored 10 years ago

23) $iban = NULL;
24) if (isset($_GET['iban'])) {
25)   $iban = $_GET['iban'];
26) } elseif (isset($_GET['kto']) && isset($_GET['blz'])) {
27)   $iban = find_iban($_GET['blz'], $_GET['kto']);
28) }
29) if ($iban == NULL) {
30)   echo "Fehler!";
31)   die();
32) }
Bernd Wurst Vervollständige Bankname un...

Bernd Wurst authored 10 years ago

33) 
Bernd Wurst Zeige gleich an, ob eine (d...

Bernd Wurst authored 10 years ago

34) $iban_ok = (verify_iban($iban) ? '1' : '0');
35) 
Bernd Wurst Vervollständige Bankname un...

Bernd Wurst authored 10 years ago

36) $bank = get_bank_info($iban);
37) 
38) header("Content-Type: text/javascript");
39) echo "[\n";
Bernd Wurst Ermögliche das Berechnen de...

Bernd Wurst authored 10 years ago

40) echo ' { "iban_ok": "'.$iban_ok.'", "iban": "'.$iban.'", "bic": "'.$bank['bic'].'", "bankname" : "'.$bank['name'].'" } ';