This article may have been copied from the the forum-based Online Manual and contain some HTML remnants that need to be cleaned up. Please clean it up. This template may be removed when cleanup is complete. |
To add information to your website, first load up either of the examples below depending on your website page extension:
- http://www.simplemachines.org/community/ssi_examples.php for *.php web pages.
- http://www.simplemachines.org/community/ssi_examples.shtml for *.shtml web pages.
Locate the function you wish to add to your website page from the list of examples and take the code it lists for the function, our example uses the Recent Topics Function:
: <a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation"></a>
<?php ssi_recentTopics(); ?>
Above code is for *.php pages, but for for *.shtml the same function equivalent is:
: <a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation"></a>
<!--#include virtual="./SSI.php?ssi_function=recentTopics" -->
Now add that line of code in an html view of your page where you wish the information to be located. Repeat with other functions you wish to add. Once uploaded to your website you should see the information on your website.