diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2009-02-25 15:39:21 -0500 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2009-02-25 15:39:21 -0500 |
| commit | 4cce41c058cc132df28c891585a8380a68f6ab23 (patch) | |
| tree | 2b6a98b7b44728a1692a3fff2cc4893a8a038e8a /includes/header.php | |
| parent | 9f112c2e1668c286bdbf832f6e2f4451b7d52b44 (diff) | |
| download | pillowcase-4cce41c058cc132df28c891585a8380a68f6ab23.tar.gz pillowcase-4cce41c058cc132df28c891585a8380a68f6ab23.tar.bz2 pillowcase-4cce41c058cc132df28c891585a8380a68f6ab23.zip | |
Added RSS feed
Diffstat (limited to 'includes/header.php')
| -rw-r--r-- | includes/header.php | 31 |
1 files changed, 1 insertions, 30 deletions
| diff --git a/includes/header.php b/includes/header.php index a9b93cd..a26f6b9 100644 --- a/includes/header.php +++ b/includes/header.php | |||
| @@ -11,6 +11,7 @@ if (isset($title)) | |||
| 11 | <HEAD> | 11 | <HEAD> |
| 12 | <TITLE><?php echo($rtitle); ?></TITLE> | 12 | <TITLE><?php echo($rtitle); ?></TITLE> |
| 13 | <LINK REL="stylesheet" HREF="/style.css"> | 13 | <LINK REL="stylesheet" HREF="/style.css"> |
| 14 | <LINK REL="alternate" TYPE="application/rss+xml" HREF="/rss.php"> | ||
| 14 | </HEAD> | 15 | </HEAD> |
| 15 | 16 | ||
| 16 | <BODY> | 17 | <BODY> |
| @@ -19,34 +20,4 @@ if (isset($title)) | |||
| 19 | <A HREF="/"><H1>Pillowcase</H1></A> | 20 | <A HREF="/"><H1>Pillowcase</H1></A> |
| 20 | </DIV> | 21 | </DIV> |
| 21 | 22 | ||
| 22 | <?php | ||
| 23 | |||
| 24 | include_once($_SERVER['DOCUMENT_ROOT'] . '/includes/db.php'); | ||
| 25 | include_once($_SERVER['DOCUMENT_ROOT'] . '/includes/functions.php'); | ||
| 26 | |||
| 27 | $getlast = "SELECT * FROM config WHERE name = \"lastUpdated\""; | ||
| 28 | $getlast2 = mysql_query($getlast); | ||
| 29 | $getlast3 = mysql_fetch_array($getlast2); | ||
| 30 | |||
| 31 | $last = $getlast3['value']; | ||
| 32 | if ($last != date('md')) | ||
| 33 | { | ||
| 34 | $getpending = "SELECT * FROM comics WHERE status = \"pending\" ORDER BY id ASC LIMIT 0,1"; | ||
| 35 | $getpending2 = mysql_query($getpending); | ||
| 36 | $getpending3 = mysql_fetch_array($getpending2); | ||
| 37 | if (!empty($getpending3)) | ||
| 38 | { | ||
| 39 | $id = next_comic_id(); | ||
| 40 | |||
| 41 | $setcomic = "UPDATE comics SET status = \"publish\", comic_id = " . $id . " WHERE id = " . $getpending3['id']; | ||
| 42 | $setcomic2 = mysql_query($setcomic) or die($setcomic); | ||
| 43 | |||
| 44 | $insmeta = "INSERT INTO meta (comic_id,name,value) VALUES (" . $getpending3['id'] . ",\"pubDate\",\"" . date('Y-m-d H:i:s') . "\")"; | ||
| 45 | $insmeta2 = mysql_query($insmeta) or die($insmeta); | ||
| 46 | |||
| 47 | $setconfig = "UPDATE config SET value = \"" . date('md') . "\" WHERE name = \"lastUpdated\""; | ||
| 48 | $setconfig2 = mysql_query($setconfig); | ||
| 49 | } | ||
| 50 | } | ||
| 51 | 23 | ||
| 52 | ?> | ||
