Topic: I want to integrate the last 10 post

I want to integrate the last 10 post in the forum on my site like the main index not in the forum sidebar can this be done with include or something?

Re: I want to integrate the last 10 post

have you had a look at extern.php? if not it will do what you want if i recall.  it's in your forum root. wink

~James
FluxBB - Less is more

Re: I want to integrate the last 10 post

Dr.Jeckyl wrote:

have you had a look at extern.php? if not it will do what you want if i recall.  it's in your forum root. wink

Can u explain how I do that like I was 2 years old?

Re: I want to integrate the last 10 post

@Dr.Jeckyl: I just had a quick look in extern.php, and I couldn't find an option that allowed you to show the last 10 posts.

~Glyceryltrinitrat

"Reality is merely an illusion, albeit a very persistent one." --Albert Einstein

5

Re: I want to integrate the last 10 post

From the extern.php file:

Show the 10 newest topics from forums with ID 5, 6 and 7:
include('http://host.com/forums/extern.php?action=new&show=10&fid=5,6,7');

Remove the &fid= to show the latest topics from all forums.

Re: I want to integrate the last 10 post

He said posts, not topics.

I want to integrate the last 10 post in the forum (...)

~Glyceryltrinitrat

"Reality is merely an illusion, albeit a very persistent one." --Albert Einstein

7

Re: I want to integrate the last 10 post

Ok smile

Show the 10 most recently active topics from all forums:
include('http://host.com/forums/extern.php?action=active&show=10');

8

Re: I want to integrate the last 10 post

the last posts
not topics

9

Re: I want to integrate the last 10 post

I don't like the way extern.php is supposed to work. If you have maybe seen SMF's SSI.php you should now what's it supposed to like like.

extern.php must be "includeable" form any directory, and should give the webmaster a choice between returning an array or outputing to the broser.

http://www.info-mob.com/forum/ - Croatian forum only, don't bother if you don't speak Croatian :)

Re: I want to integrate the last 10 post

NicKy wrote:

the last posts
not topics

That's what "active" topics means.

...or do you want the actual text of the posts?

Looking for a certain modification for your forum? Please take a look here before posting.