bd22f03937341179a1beaf87aafcde8e61882589
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 Revert "Umstellung auf mysqli"

Bernd Wurst authored 10 years ago

19)   $address = maybe_null(mysql_real_escape_string($address));
20)   db_query("UPDATE kundendaten.kunden SET email_newsletter={$address} WHERE id={$cid}");
bernd Rudimentäres Newsletter-Arc...

bernd authored 13 years ago

21) }
22) 
23) function get_newsletter_address() {
24)   $cid = $_SESSION['customerinfo']['customerno'];
Bernd Wurst Revert "Umstellung auf mysqli"

Bernd Wurst authored 10 years ago

25)   $result = db_query("SELECT email_newsletter FROM kundendaten.kunden WHERE id={$cid}");
26)   $r = mysql_fetch_assoc($result);
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');
Bernd Wurst Revert "Umstellung auf mysqli"

Bernd Wurst authored 10 years ago

33)   $result = db_query("SELECT id, date, subject, content FROM misc.news WHERE date > '{$today}' - INTERVAL 1 YEAR ORDER BY date DESC");
bernd Rudimentäres Newsletter-Arc...

bernd authored 13 years ago

34)   $ret = array();
Bernd Wurst Revert "Umstellung auf mysqli"

Bernd Wurst authored 10 years ago

35)   while ($item = mysql_fetch_assoc($result)) {
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;
Bernd Wurst Revert "Umstellung auf mysqli"

Bernd Wurst authored 10 years ago

45)   $result = db_query("SELECT date, subject, content FROM misc.news WHERE id={$id}");
46)   $ret = mysql_fetch_assoc($result);