Re: what goes after the ? in links?
Posted: Fri Nov 06, 2009 2:31 pm
I GOT IT WORKING!!! It was in deed the apostrophies. Your code had apostrphies but the correct query goes like this:
Notice the where statement has no apostrphies around neither the variable nor the field from the database. Now my permalinks are working! Which means now my RSS feed is more accurate! We are excited about this!!!!!!!!!!
Now I just need to deal with more apostrophies in the actual text of my journal interfering with the RSS feed. Then I think I'm going to attach it to my facebook page, and maybe just maybe, reformat the page so it doesn't look like it came from the 1980s!
Thanks again!
Code: Select all
$query = "
SELECT id, date_format(date, '%M %e, %Y') as date, title, entry
from tblJournal
WHERE id = $id
ORDER BY id DESC
LIMIT $start, $display";
Now I just need to deal with more apostrophies in the actual text of my journal interfering with the RSS feed. Then I think I'm going to attach it to my facebook page, and maybe just maybe, reformat the page so it doesn't look like it came from the 1980s!
Thanks again!