Site hosted by Angelfire.com: Build your free website today!
News Scripting for SMF 1.0
Copyright (C) 2002-2005 Lewis Media. All Rights Reserved.
Web: http://www.simplemachines.org/


1. Setup the include statement on the page you wish your news to appear on according to the type of file you will be using. (either PHP or SHTML) For this case, we are going to show you how to do it through PHP includes. Add the include to point to SSI.php in your root SMF directory.

e.g. <? include("http://www.simplemachines.org/community/SSI.php"); ?>

2. Add the ?ssi_function=boardNews;board=n to the end of the URL above. Make sure you replace the n with the board number you want news to appear from.

e.g. <? include("http://www.simplemachines.org/community/SSI.php?ssi_function=boardNews;board=9"); ?>

That is all you need to do to get your basic script running. You can add any of the following to the end of that, but make sure you put a semilcolon (;) at the end of each variable. These variables aren't needed, but provide better versatility.

limit=n
Limits the amount of news items to show. (the default is 5)

length=n
Limits the length of each post to n characters. (the default is to impose no limit)

start=n
Starts the news items at a certain offset. (the default is 0)

e.g. <? include("http://www.simplemachines.org/community/SSI.php?ssi_function=boardNews;board=9;limit=7"); ?>
This shows an example of how one might change the limit on the news items.