diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-01-08 21:09:05 +0000 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-01-08 21:09:05 +0000 |
commit | 459e929311d8806f604c0b914ba4b37aa731fbfc (patch) | |
tree | d81247d7ee4f768c9df552df07aad6d6896047f8 /rss.php | |
parent | 5b892eafafb1f41bab1a20f1524cef144042e3e1 (diff) | |
download | pillowcase-459e929311d8806f604c0b914ba4b37aa731fbfc.tar.gz pillowcase-459e929311d8806f604c0b914ba4b37aa731fbfc.tar.bz2 pillowcase-459e929311d8806f604c0b914ba4b37aa731fbfc.zip |
Diffstat (limited to 'rss.php')
-rwxr-xr-x | rss.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/rss.php b/rss.php index 6e43c9c..716049b 100755 --- a/rss.php +++ b/rss.php | |||
@@ -15,9 +15,8 @@ echo('<?xml version="1.0"?>'); | |||
15 | <language>en-us</language> | 15 | <language>en-us</language> |
16 | <?php | 16 | <?php |
17 | 17 | ||
18 | $getitems = "SELECT * FROM comics WHERE status = \"publish\" ORDER BY comic_id DESC LIMIT 0,10"; | 18 | $getitems = $mysql_conn->query("SELECT * FROM comics WHERE status = \"publish\" ORDER BY comic_id DESC LIMIT 0,10"); |
19 | $getitems2 = mysql_query($getitems); | 19 | foreach ($getitems as $getitems3) |
20 | while ($getitems3 = mysql_fetch_array($getitems2)) | ||
21 | { | 20 | { |
22 | ?> | 21 | ?> |
23 | <item> | 22 | <item> |