cd9490275c6b5b5652429de0d5d1023abe13a335
bernd Rudimentäres Newsletter-Arc...

bernd authored 12 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 Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 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 12 years ago

16) 
17) function set_newsletter_address($address) {
18)   $cid = $_SESSION['customerinfo']['customerno'];
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

19)   db_query("UPDATE kundendaten.kunden SET email_newsletter=:address WHERE id=:cid", array(":address" => $address, ":cid" => $cid));
bernd Rudimentäres Newsletter-Arc...

bernd authored 12 years ago

20) }
21) 
22) function get_newsletter_address() {
23)   $cid = $_SESSION['customerinfo']['customerno'];
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

24)   $result = db_query("SELECT email_newsletter FROM kundendaten.kunden WHERE id=?", array($cid));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

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

bernd authored 12 years ago

26)   return $r['email_newsletter'];
27) }
28) 
29) 
30) function get_latest_news() {
Bernd Wurst Zeige Newsletter für zwei J...

Bernd Wurst authored 8 years ago

31)   $result = db_query("SELECT id, date, subject, content FROM misc.news WHERE date > CURDATE() - INTERVAL 2 YEAR ORDER BY date DESC");
bernd Rudimentäres Newsletter-Arc...

bernd authored 12 years ago

32)   $ret = array();
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

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

bernd authored 12 years ago

34)     $ret[] = $item;
35)   }
36)   DEBUG($ret);
37)   return $ret;
38) }
39) 
40) 
41) function get_news_item($id) {
42)   $id = (int) $id;
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

43)   $result = db_query("SELECT date, subject, content FROM misc.news WHERE id=?", array($id));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

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