![]() |
MySQL, PHP and new posts?
Apologies if this has been explained previously, but I couldn't find an answer, though I did find some code to get me started. I need to pull new posts from the database and display the data on an external PHP page. This is the query I have to start out with:
Quote:
Thanks in advance. |
[sql]SELECT p.postid, p.username, p.userid, p.dateline, p.pagetext, t.forumid
FROM " . TABLE_PREFIX . "post AS p LEFT JOIN " . TABLE_PREFIX . "thread AS t USING threadid WHERE visible = 1 ORDER BY dateline DESC LIMIT 10[/sql] |
Please be aware that the above query does not take permissions into consideration. You might get posts from forums that are not accessible to general public.
Maybe it is easier to use RSS for this. |
Adding this would take care of that, wouldn't it?
Code:
AND (forum.options & 4096) |
Not sure which forum option is 4096, but that would not take any usergroup/forum permissions into account.
|
I looked in the bitfield file and this is what it says:
Code:
|
Thanks for the code. I think I'm using a version of MySQL that doesn't support some of it. This is what I could get to work:
Code:
SELECT p.postid, p.username, p.userid, p.dateline, p.pagetext |
The ID is the link to the thread/post. The dateline is the date/time.
|
I thought postid just gave a number, not a HTML link? I assume if I can get the threadid I can use that to do another query to get the thread title?
|
The number in the link to threads is the ID ;).
|
Quote:
I need to do a second query to get the thread text, but without knowing the names of everything I'm struggling. I've searched through Google and through the owners area without any luck in the search for documentation. Any online source for the MySQL table layout? --------------- Added [DATE]1213317483[/DATE] at [TIME]1213317483[/TIME] --------------- As always, as soon as you ask for something, you find it. ;) I have it all working fine now. Thanks for all your help. :) |
Hey
It would be great if you post the code here. I've been looking for this for a long time! Thanks, Marin |
The code is below. I'm sure there are much more elegant methods, but it works:
Code:
$result = mysql_query("SELECT postid, username, userid, dateline, pagetext, threadid |
All times are GMT. The time now is 02:20 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|