f1f231f5e074dfa038e70a67d39849e80f2b4b4d
bernd Rudimentäres Newsletter-Arc...

bernd authored 13 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Updated copyright notice (2...

Bernd Wurst authored 11 years ago

5) Written 2008-2013 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

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) */
bernd Rudimentäres Newsletter-Arc...

bernd authored 13 years ago

16) 
17) function set_newsletter_address($address) {
18)   $cid = $_SESSION['customerinfo']['customerno'];
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

19)   $address = maybe_null(db_escape_string($address));
bernd Rudimentäres Newsletter-Arc...

bernd authored 13 years ago

20)   db_query("UPDATE kundendaten.kunden SET email_newsletter={$address} WHERE id={$cid}");
21) }
22) 
23) function get_newsletter_address() {
24)   $cid = $_SESSION['customerinfo']['customerno'];
25)   $result = db_query("SELECT email_newsletter FROM kundendaten.kunden WHERE id={$cid}");
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

26)   $r = $result->fetch();
bernd Rudimentäres Newsletter-Arc...

bernd authored 13 years ago

27)   return $r['email_newsletter'];
28) }
29) 
30) 
31) function get_latest_news() {
32)   $today = strftime('%Y-%m-%d');
33)   $result = db_query("SELECT id, date, subject, content FROM misc.news WHERE date > '{$today}' - INTERVAL 1 YEAR ORDER BY date DESC");
34)   $ret = array();
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

35)   while ($item = $result->fetch()) {
bernd Rudimentäres Newsletter-Arc...

bernd authored 13 years ago

36)     $ret[] = $item;
37)   }
38)   DEBUG($ret);
39)   return $ret;
40) }
41) 
42) 
43) function get_news_item($id) {
44)   $id = (int) $id;
45)   $result = db_query("SELECT date, subject, content FROM misc.news WHERE id={$id}");
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

46)   $ret = $result->fetch();