SMF SSI.php Functions
Current Version: 2.0
This file is used to demonstrate the capabilities of SSI.php using PHP include functions. The examples show the include tag, then the results of it.
Include Code
To use SSI.php in your page add at the very top of your page before the <html> tag on line 1 of your php file:
<?php require("SSI.php"); ?>
Some notes on usage
All the functions have an output method parameter. This can either be "echo" (the default) or "array"
If it is "echo", the function will act normally - otherwise, it will return an array containing information about the requested task. For example, it might return a list of topics for ssi_recentTopics.
This functionality can be used to allow you to present the information in any way you wish.
Additional Guides & FAQ
Need more information on using SSI.php? Check out Using SSI.php article or the SSI FAQ.
Recent Topics Function
Code (simple mode)
<?php ssi_recentTopics(); ?>
Code (advanced mode)
<?php ssi_recentTopics($num_recent = 8, $exclude_boards = null, $include_boards = null, $output_method = 'echo'); ?>
Result
[Общественная деятельность участников форума] | The Impact of Reputation on Consumer Behavior от uqohagy | Сегодня в 04:09:38 |
[ДРУГИЕ РЕГИОНЫ] | DIFFSYS dongle от Foplips00 | Сегодня в 04:08:19 |
[ДРУГИЕ РЕГИОНЫ] | LuArtX CARF 2023.5 от Foplips00 | Сегодня в 04:03:35 |
[ДРУГИЕ РЕГИОНЫ] | CGS ORIS FLEX PACK WEB 3.3 от Foplips00 | Сегодня в 03:59:11 |
[Информация и мы] | The Environmental Impact of Regular Forklift Maintenance от pysong | Сегодня в 03:57:00 |
[ДРУГИЕ РЕГИОНЫ] | Ensoft EnCPT EnFEM GeoMat от Foplips00 | Сегодня в 03:54:09 |
[ДРУГИЕ РЕГИОНЫ] | 3Shape cambridge x64 2022 от Foplips00 | Сегодня в 03:49:22 |
[ДРУГИЕ РЕГИОНЫ] | Smile Designer Pro от Foplips00 | Сегодня в 03:44:43 |
Recent Posts Function
Code
<?php ssi_recentPosts(); ?>
Result
[Общественная деятельность участников форума] | The Impact of Reputation on Consumer Behavior от uqohagy | Сегодня в 04:09:38 |
[ДРУГИЕ РЕГИОНЫ] | DIFFSYS dongle от Foplips00 | Сегодня в 04:08:19 |
[ДРУГИЕ РЕГИОНЫ] | LuArtX CARF 2023.5 от Foplips00 | Сегодня в 04:03:35 |
[ДРУГИЕ РЕГИОНЫ] | CGS ORIS FLEX PACK WEB 3.3 от Foplips00 | Сегодня в 03:59:11 |
[Информация и мы] | The Environmental Impact of Regular Forklift Maintenance от pysong | Сегодня в 03:57:00 |
[ДРУГИЕ РЕГИОНЫ] | Ensoft EnCPT EnFEM GeoMat от Foplips00 | Сегодня в 03:54:09 |
[ДРУГИЕ РЕГИОНЫ] | 3Shape cambridge x64 2022 от Foplips00 | Сегодня в 03:49:22 |
[ДРУГИЕ РЕГИОНЫ] | Smile Designer Pro от Foplips00 | Сегодня в 03:44:43 |
Top Boards Function
Shows top boards by the number of posts.
Code
<?php ssi_topBoards(); ?>
Result
Раздел | Тем | Сообщений |
---|---|---|
Информация и мы | 132 910 | 230 766 |
Общие вопросы | 119 309 | 143 365 |
Общие вопросы современного мира | 12 524 | 32 890 |
ДРУГИЕ РЕГИОНЫ | 13 296 | 14 924 |
РФ и бывшие союзные республики | 1 020 | 9 874 |
Общий взгляд | 5 146 | 9 574 |
США | 1 603 | 6 285 |
ФОРУМ ПОЛИТИЧЕСКОЙ КРЕАЦИИ | 1 641 | 4 940 |
Экономика | 1 926 | 4 736 |
ЕВРОПА | 738 | 4 553 |
Top Topics
Shows top topics by the number of replies or views.
Code (show by number of views)
<?php ssi_topTopicsViews(); ?>
Result
Просмотров | Ответов | |
---|---|---|
Экономический кризис в США | 420 574 | 1 109 |
Европиздец | 326 701 | 949 |
Сирия - Ливия №2 | 279 201 | 580 |
Вы бы стали покупать права на машину? | 259 046 | 4 |
Приколы 2.0. | 238 020 | 1 239 |
Япона мать... | 220 943 | 462 |
Государство без налогов? | 208 742 | 389 |
Delhi Call Girls Service | 196 723 | 1 337 |
Армия США | 185 973 | 456 |
Как изменилось Ваше отношение к Кургиняну за последний год. | 180 490 | 444 |
Code (show by number of replies)
<?php ssi_topTopicsReplies(); ?>
Result
Просмотров | Ответов | |
---|---|---|
Delhi Call Girls Service | 196 723 | 1 337 |
Приколы 2.0. | 238 020 | 1 239 |
Экономический кризис в США | 420 574 | 1 109 |
Европиздец | 326 701 | 949 |
Сирия - Ливия №2 | 279 201 | 580 |
Когда и какого ожидать супостата? | 147 529 | 511 |
Япона мать... | 220 943 | 462 |
Армия США | 185 973 | 456 |
Как изменилось Ваше отношение к Кургиняну за последний год. | 180 490 | 444 |
[Telegram: @deepD10] where to apply for Liechtenstein id card, passport, degree | 5 792 | 420 |
Top Poster Function
Shows the top poster's name and profile link.Code
<?php ssi_topPoster(); ?>
Result
Latest Member Function
Shows the latest member's name and profile link.
Code
<?php ssi_latestMember(); ?>
Result
Member of the Day
Shows one random member of the day. This changes once a day.
Code
<?php ssi_randomMember('day'); ?>
Result
Who's Online Function
This function shows who are online inside the forum.
Code
<?php ssi_whosOnline(); ?>
Result
Log Online Presence
This function logs the SSI page's visitor, then shows the Who's Online list. In other words, this function shows who are online inside and outside the forum.
Code
<?php ssi_logOnline(); ?>
Result
Login Function
Shows a login box only when user is not logged in.
Code
<?php ssi_login(); ?>
Result
Logout Function
Shows a logout link only when user is logged in.
Code
<?php ssi_logout(); ?>
Result
Welcome Function
Greets users or guests, also shows user's messages if logged in.
Code
<?php ssi_welcome(); ?>
Result
Не получили письмо с кодом активации?
Today's Calendar Function
Code
<?php ssi_todaysCalendar(); ?>
Result
Today's Birthdays Function
Code
<?php ssi_todaysBirthdays(); ?>
Result
Today's Holidays Function
Code
<?php ssi_todaysHolidays(); ?>
Result
Today's Events Function
Code
<?php ssi_todaysEvents(); ?>
Result
Forum Stats
Shows some basic forum stats: total members, posts, topics, boards, etc.
Code
<?php ssi_boardStats(); ?>
Result
Всего сообщений: 483 815
Всего тем: 300 893
Всего категорий: 6
Всего разделов: 33
News Function
Shows random forum news.
Code
<?php ssi_news(); ?>
Result
Board News Function
Shows the latest posts from read only boards, or a specific board.
Code
<?php ssi_boardNews(); ?>
Result
The Environmental Impact of Regular Forklift Maintenance
In today’s world, where environmental sustainability is a growing concern, businesses are increasingly looking for ways to reduce their carbon footprint. One often overlooked aspect is the maintenance of industrial equipment, such as forklift trucks. Regular maintenance of forklifts not only ensures their efficient operation but also has significant environmental benefits. This article explores how proper forklift maintenance can contribute to a greener and more sustainable future.
Reducing Emissions
Forklifts, especially those powered by internal combustion engines, can be significant sources of emissions if not properly maintained. Regular maintenance helps in reducing these emissions by ensuring that the engine runs efficiently. Key maintenance tasks that contribute to lower emissions include:
forklifts aluminum alloy lifting platform | China Trade price on Manufacturer Wholesale aluminum alloy lifting platform Materials Handling sale Buy Online Industrial Equipment USA/UK/India/Australia/CANADA | ForkLift
Engine Tuning: Regular tuning of the engine ensures that it operates at optimal efficiency, reducing the amount of fuel consumed and, consequently, the emissions produced.
Air Filter Replacement: A clean air filter allows the engine to breathe better, improving combustion efficiency and reducing harmful emissions.
Exhaust System Checks: Ensuring that the exhaust system is in good condition helps in reducing the release of pollutants into the atmosphere.
Energy Efficiency
Electric forklifts are becoming increasingly popular due to their lower environmental impact compared to their diesel or gasoline counterparts. However, even electric forklifts require regular maintenance to ensure they operate efficiently. Proper maintenance can lead to significant energy savings, which in turn reduces the environmental impact. Key areas to focus on include:
Battery Maintenance: Regularly checking and maintaining the battery ensures it operates efficiently, reducing energy consumption and extending its lifespan.
Hydraulic System Maintenance: Ensuring that the hydraulic system is in good condition reduces the energy required to lift and move loads.
Tire Maintenance: Properly inflated and maintained tires reduce rolling resistance, leading to lower energy consumption.
Waste Reduction
Regular maintenance of forklifts can also contribute to waste reduction. By keeping the equipment in good condition, businesses can extend the lifespan of their forklifts, reducing the need for frequent replacements and the associated waste. Key maintenance practices that help in waste reduction include:
Lubrication: Regular lubrication of moving parts reduces wear and tear, extending the lifespan of the equipment.
Component Replacement: Timely replacement of worn-out components prevents further damage to the forklift, reducing the need for extensive repairs or replacements.
Preventive Maintenance: Implementing a preventive maintenance schedule helps in identifying and addressing potential issues before they lead to significant damage.
Recycling and Disposal
Proper maintenance also involves the responsible disposal and recycling of used components and fluids. Businesses should ensure that they follow environmentally friendly practices when disposing of used oil, filters, batteries, and other components. Key practices include:
Recycling Used Oil: Used oil should be collected and recycled properly to prevent environmental contamination.
Battery Recycling: Old batteries should be recycled through authorized recycling programs to prevent the release of harmful chemicals into the environment.
Proper Disposal of Filters: Used filters should be disposed of in accordance with environmental regulations to prevent pollution.
Conclusion
Regular maintenance of forklifts is not just about ensuring their efficient operation and reducing downtime; it also has significant environmental benefits. By reducing emissions, improving energy efficiency, minimizing waste, and ensuring responsible disposal and recycling, businesses can contribute to a greener and more sustainable future. As environmental concerns continue to grow, it is essential for businesses to recognize the role that proper equipment maintenance can play in achieving their sustainability goals.
جعل الحبيب يتصل بالقران 00491634511222
نحن نمتلك 17 رابط دوفلو ذات جودة عالية
من يرغب تبادل الروابط الخلفية النصية
يرجي التواصل معنا عبر الايميل
Exchange just bost
We provide you with 17 high quality Duflo Backlinks
Who wants to exchange text Backlinks
Please contact us via email
links127@hotmail.com
الشيخ الروحاني جلب الحبيب و خلال ساعة 00491634511222 لجلب الحبيب
شيخ روحاني
رقم ساحر سعودي
رقم ساحر سعودي
رقم ساحر حقيقي
شيخ روحاني
BERLINintim
wikimedia.cc
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
casinoberlin
جلب الحبيب
الشيخ الروحاني جلب الحبيب و خلال ساعة 00491634511222 لجلب الحبيب
معالج روحانى 00491634511222
004917637777797 الشيخ الروحاني جلب الحبيب و خلال ساعة
Exchange just bost
We provide you with 17 high quality Duflo Backlinks
Who wants to exchange text Backlinks
Please contact us via email
links127@hotmail.com
تبادل جيست بوست
نحن نمتلك 17 رابط دوفلو ذات جودة عالية
من يرغب تبادل الروابط الخلفية النصية
يرجي التواصل معنا عبر
00491634511222 الواتس اب
https://www.rauhane.net/
https://www.elso9.com
https://www.s3udy.org
https://www.eljnoub.com
https://www.q8yat.org
https://hurenberlin.com
https://wikimedia.cc
http://www.alfalaki.net
https://www.jeouzal.org/
https://www.jaouzal.org/
https://www.sheikhrohani.de
https://www.myemairat.de
https://www.saudieonline.de
https://www.nejetaa.de
https://www.iesummit.de
https://www.jalbalhabeb.de
https://www.alukah.de
https://www.mqaall.de
https://www.elbalad.de
https://www.muhtwa.de
https://www.mawdoo3.de
https://casinoberlin.eu
https://jalbalhabeb.org/
004917637777797
اهلا وسهلا بكم في صفحتنا وشكرا للعجاب في الصفحه لمشاهده جميع المقاطع وغيرها يمكنم الاشتراك بالقناة على اليوتيوب وتفعيل الجرص ليصلكم كل جديد من القناة
الشيخ الروحاني جلب الحبيب و خلال ساعة
الشيخ الروحاني جلب الحبيب و خلال ساعة 00491634511222 لجلب الحبيب
جلب الحبيب بسورة الفاتحة 00491634511222
نحن نمتلك 17 رابط دوفلو ذات جودة عالية
من يرغب تبادل الروابط الخلفية النصية
يرجي التواصل معنا عبر الايميل
Exchange just bost
We provide you with 17 high quality Duflo Backlinks
Who wants to exchange text Backlinks
Please contact us via email
links127@hotmail.com
الشيخ الروحاني جلب الحبيب و خلال ساعة 00491634511222 لجلب الحبيب
شيخ روحاني
رقم ساحر سعودي
رقم ساحر سعودي
رقم ساحر حقيقي
شيخ روحاني
BERLINintim
wikimedia.cc
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
جلب الحبيب
casinoberlin
جلب الحبيب
الشيخ الروحاني جلب الحبيب و خلال ساعة 00491634511222 لجلب الحبيب
معالج روحانى 00491634511222
004917637777797 الشيخ الروحاني جلب الحبيب و خلال ساعة
Exchange just bost
We provide you with 17 high quality Duflo Backlinks
Who wants to exchange text Backlinks
Please contact us via email
links127@hotmail.com
تبادل جيست بوست
نحن نمتلك 17 رابط دوفلو ذات جودة عالية
من يرغب تبادل الروابط الخلفية النصية
يرجي التواصل معنا عبر
00491634511222 الواتس اب
https://www.rauhane.net/
https://www.elso9.com
https://www.s3udy.org
https://www.eljnoub.com
https://www.q8yat.org
https://hurenberlin.com
https://wikimedia.cc
http://www.alfalaki.net
https://www.jeouzal.org/
https://www.jaouzal.org/
https://www.sheikhrohani.de
https://www.myemairat.de
https://www.saudieonline.de
https://www.nejetaa.de
https://www.iesummit.de
https://www.jalbalhabeb.de
https://www.alukah.de
https://www.mqaall.de
https://www.elbalad.de
https://www.muhtwa.de
https://www.mawdoo3.de
https://casinoberlin.eu
https://jalbalhabeb.org/
004917637777797
اهلا وسهلا بكم في صفحتنا وشكرا للعجاب في الصفحه لمشاهده جميع المقاطع وغيرها يمكنم الاشتراك بالقناة على اليوتيوب وتفعيل الجرص ليصلكم كل جديد من القناة
الشيخ الروحاني جلب الحبيب و خلال ساعة
الشيخ الروحاني جلب الحبيب و خلال ساعة 00491634511222 لجلب الحبيب
Бездепозитные фриспины и другие бонусы Gizbo Casino
Интерфейс и оформление сайта Gizbo Casino
Игорный веб-ресурс оформлен в спокойных темных тонах, чтобы пользователи смогли найти нужный раздел. Он отличается удобной и понятной навигацией. На верхней панели размещено основное меню, кнопки для прохождения регистрации и авторизации. Посетители могут увидеть баннеры с актуальной информацией об промо-акциях и новых слотах. Доступен список игровых автоматов, которые пользуются большой популярностью среди игроков. В футере сайта размещена подробная информация о лицензии, бонусной программе, платежных системах и провайдерах, с которыми сотрудничает интернет-казино Гизбо.
Особенности регистрации на портале Гизбо Казино
Чтобы крутить слоты на реальные деньги и воспользоваться бонусами, нужно создать игровой аккаунт. Для успешной регистрации потребуется выполнить следующие действия:
• вписать в регистрационную форму электронную почту или номер мобильного телефона;
• придумать пароль, состоящий из латинских букв и цифр;
• выбрать подходящую валюту и страну проживания.
После регистрации игрок может выполнить вход в личный кабинет и пополнить счет.
tebis v4.1R5sp3
-----past_13#mail.ru-----
Just for a test,anything you need-----
geomodeling attributestudio v8.2
Global.Mapper.v16.1.3.b031815.Win32_64
Geometric_Glovius_Pro_v4.0.0.209_Win
StairDesigner.Pro v7.15f
AnyLogic Professional 8.8.3
Golden Software Didger 5.8.1326
Golden.Software.Grapher.v11.4.770.x86.x64
Golden.Software.MapViewer.V8.0.212
Golden.Software.Strater.v4.4.1648
Golden.Software.Surfer.v12.6.963.x86.x64
LFM.Server v5.3.0 x64
Sigasi Studio XPRT 4.5.2
FTI.v5.2-5.5.Suite.Catia.V5.R18-28
PointCab Pro v3.9 R6 x64
POWER and IR DROP Analysis Apache Redhawk 2015
Synopsys FPGA Synthesis Products J-2015.03 SP1
SAP.PowerDesigner.v16.5.4.1.4535.x32x64
Scientific Toolworks Understand v5.0.962 x86x64
iMold.v12.SP5.1.Premium.for.SoW2011-2015.Win32_64
Intel.Parallel.Studio.XE.2015.With.Update.1
Intersect v2015.2
Altair FEKO 2022.0
Romax nexus 18.0
Simcore Softwares Processing Modflow X v10.02 x64
FARO SCENE v2023
IronCAD Design Collaboration Suite 2019 Update 1 SP1 Win64
Structural Vibration Solutions ARTeMIS Modal 6.0.2.0 Win64
Golden Software Grapher 14.4.420
JewelCAD Pro 2.2.3 build 20190416
Synopsys Synplify vP-2019.03 SP1 Win
Synopsys.Hspice.vP-2019.06.Win
PVTsim Nova v6.0
Siemens.Solid.Edge.2020.Multilang.Win64
AASHTOWare Pavement ME Design 2013 v1.3.28
MAZAK FG-CADCAM 2020.0.1929 Multilanguage Win64
RADAN Radm-ax 2020.0.1929 Multilanguage Win64
COMSOL.Multiphysics.6.1
Tekla.Structures.v2023
Dassault.Systemes.CAA.RADE.V5R19
SMARTPLANT MATERIALS 2011 SP8
Lantek Expert V33.03
Intergraph CADWorx 2015 v15.0.0.167 HotFix 1
Intergraph CADWorx Draftpro 2015 v15.0
Invensys.SimSci.Esscor.PROII.v9.2.2
ugins for Mac & PC(64bit)
Future Facilities 6SigmaDC Suite R9 x86x64
Geomodeling VVA Attribute Studio V7.4 x64
Quux.Sincpac.C3D.2015.v3.6.5210.33823.x64.AutoCAD.Civil3D.2014.2015
SplitWorks.2012.SP1.1
StruCalc.v9.0.1
Geosec v2018
MicroSurvey Point Prep v2014
Intrepid.Geophysics.GeoModeller.2014.v3.2.0.Win64
InventorCAM 2023
Robotmaster v6.1.4048
The Kingdom Software 2023
SIMATIC WINCC PROFESSIONAL v11 SP1
Keynetix.KeyAGS.v4.4.4.50 x86x64
Geopainting.GPSMapEdit.v2.1.78.8
Gepsoft.GeneXproTools.v5.0.3902
Global Mapper 16.0.5 Build 111814 Win32_64
HiCAD.v2023
FastCAM v7.2
INTViewer v4.5.1
ONYX ProductionHouse RIP 11.1.2
Protreat
FIFTY2 PreonLab 6.1 x64
Autodesk Fabrication ESTmep 2020 Win6
inFlow Inventory Premium v2.5.1
IMSI TurboCAD Pro Platinum 21.2 x86x64
Iar.Embedded.Workbench.For.Msp430.V5.52
Harlequin Navigator v10.0
Logopress3 2015 SP0.2
Siemens.NX.v9.0.1.Win64.Engineering.Plugins
PSS E v35.3
EPS5(EPT5)
Retain Pro v10
Schneider Electric Vijeo Citect 7.40 SP1 Win32
Siemens Desigo XWorks Plus 4.10.090 (x86)
Command.Digital.AutoHook.2015.v0.8.0.60.beta.1
CMG Suite v2023
Charm.v11.43.0.12
ESI.Foam-X.2018.0.Win64
ESI.Nova.2018.0.Win64
ESI.VAOne.2018.0.Win64
Willmer Project Tracker v4.5.1.228
Dassault.Systemes.3DExperience.v6R2014x.Windows.&.Linux
CATIA.v5R23.CAA.&.RADE-ISO
Delcam_PowerShape_2014_R2_SP2
DELMIA.v5-6R2014.GA.Windows
Dassault Systemes GEOVIA Minex v6.3.306
DataEast.CarryMap.v3.10.552
DIGICORP Ingegneria Civil Design v9.0 SP8 for AutoCAD 2014 Win64
Kappa Workstation v5.4001
Digicorp.Civil.Design.v9.0.SP4.AutoCAD.2014.Win64
ELCAD v7.7.1
OpenRail ConceptStation CONNECT Edition V10 Update 7
FABmaster v8G2
ESI ProCAST v2014 win64
ESI Visual-Environment v9.6 win64
ESRI CityEngine Advanced 2014.0 Win64
ECS.FEMFAT.v5.0d.Win64
ECS_FEMFAT-Lab_3.10_Win32
CadnaA 2023
Concept SpiceVision v7
Eagle.Professional.6.6.0
FastImpose v14.0
planit Cabinet Vision (Solid Ultimate) V8.0
FTI FastBlank v2014 Win32_64
i-cut Layout v14.0
PackEdge v14.0 & Plato v14.0
Delcam.FeatureCAM.2023
ESI_SysWorld_2014.0_Win
Diffsys v4.38
Geometric Stackup v2.3
Frontline Genesis 2000 v10
Geometric.Glovius.Pro.v3.9.Win32_64
PFC 5.00.22 x64
jason v12
Geoscience(GS) Software v5.5
Impact v2010
STIMPRO v2021
HELiOS v2014 SP1 Win32_64
HiCAD v2014 SP1 Win32_64
Leica CloudWorx 2022
Geometric.Glovius.Pro.v4.0.0.3.Win32_64
Numeca.Hexpress.Hybrid.v3.1-3.Windows.&.Linux
Golden Software Grapher v11.1.681
OmniCAD v1.1.0.5 for NX 9.0.x Win64
Optiwave_Optisystem v21
petromod v2022
Paradigm EPOS V2022
petrel visage v2016
Process.Systems.Enterprise.gPROMS.v4.00
Processing Modflow v8.041
JMAG-Designer v23
AVEVA LFM SERVER 4.3
paradigm geolog v2022
Pinnacle fracpropt v2022
PLANIT.EDGECAM.V2014.R2
ERDAS IMAGINE 2023
Global.Mapper.v16.0.Win32_64
Intergraph CAESAR II 2023
InduSoft Web Studio v7.1 SP3
IAVO Research & Scientific 3D FeatureXTract v3.1.1.4085
Intergraph TANK 2023
Aveva.Everything3D.v2.1
Interactive Petrophysics v5.1
Frontline Analytic Solver Platform v2018
IronCAD Design Collaboration Suite 2014 v16.0 SP2 Win32_64
Latitude.Geographics.Geocortex.Essentials.v4.1.5
NUMECA.FINE.MARINE.v3.1.3.Win32_64.&.Linux64
Numeca.Fine.Turbo.Design.v9.1.1.Win32_64.&.Linux64
LMS Raynoise v3.2
Mathworks.Matlab.R2023
neoStampa v8.03
Maplesoft MapleSim 7.0
Mastercam X8 for SW HotFix 2 v17.0.17368.10 Win64
Mastercam X8 HotFix 2 v17.0.17257.0 Win64
mb.AEC.WorkSuite v2014
MAP3D-NL V6.1
MoldWorks 2013 SP0.5 for SW2012-2015 Win64
Mootools.3DBrowser.for.3D.Users.with.Polygon.Cruncher.v12.61
Mootools.Polygon.Cruncher.v10.6
Mootools.RCLocalize.v7.1
Lighttools v2023
Motion v5.1.2 MacOSX
Show Single Poll
Shows a poll in the specified topic.
Code
<?php ssi_showPoll($topicID); ?>
Result
Show Single Post
Fetches a post with a particular IDs. By default will only show if you have permission to the see the board in question. This can be overriden by passing the 2nd parameter as true.
Code
<?php ssi_fetchPosts($postIDs, $isOverride); ?>
Result
Show Single Member
Shows the specified member's name and profile link.
Code
<?php ssi_fetchMember($memberIDs); ?>
Result
Show Group Members
Shows all members in a specified group.
Code
<?php ssi_fetchGroupMembers($groupIDs); ?>
Result
Home Page Sample
This sample uses the following features: ssi_recentTopics(), ssi_logOnline(), ssi_welcome(), and ssi_boardNews(). ssi_recentTopics() is fetched using the array method, to allow further customizations on the output.Code
<?php require("SSI.php"); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SSI.php example for home page</title>
<style type="text/css">
body { font-family: Arial, Tahoma, sans-serif; font-size: 80%; background: #DFDFDF; color: #FFFFFF; margin: 0 }
ul,ol { padding-left: 19px; margin: 0; }
li { font-size: 11px; }
h1,h2,h3 { margin: 0; padding: 0; }
h3 { font-size: 15px; }
a:link,a:visited { color: #FF9000; text-decoration: none; }
a:hover { text-decoration: underline; }
#container { background: #52514E; width: 100%; border: 1px solid midnightblue; line-height: 150%; margin: 0; }
#header,#footer { color: lightgray; background-color: #2A2825; clear: both; padding: .5em; }
#leftbar { background: #DF7E00; float: left; width: 160px; margin: 0; padding: 1em; }
#leftbar a { color: #000000; text-decoration: underline; }
#content { margin-left: 190px; padding: 1em; }
#navigation { float: right; }
#navigation a:link,#navigation a:visited { color: #FF9000; }
</style>
</head>
<body>
<div id="container">
<div id="header">
<div id="navigation">
<a href="#">Link</a> | <a href="#">Link</a> | <a href="#">Link</a> | <a href="#">Link</a> | <a href="#">Link</a>
</div>
<h1 class="header">YourWebsite.com</h1>
</div>
<div id="leftbar">
<h3>Recent Forum Topics</h3>
<ul>
<?php
// Using array method to show shorter display style.
$topics = ssi_recentTopics(8, null, null, 'array');
foreach ($topics as $topic)
{
// Uncomment the following code to get a listing of array elements that SMF provides for this function.
// echo '<pre>', print_r($topic), '</pre>';
echo '
<li><a href=\"', $topic['href'], '\">', $topic['subject'], '</a> ', $txt['by'], ' ', $topics[$i]['poster']['link'], '</li>';
}
unset($topics);
?>
</ul><br />
<h3>Online Users</h3>
<?php ssi_logOnline(); ?>
</div>
<div id="content">
<?php ssi_welcome(); ?><br /><br />
<h2>News</h2>
<?php ssi_boardNews(); ?>
</div>
<div id="footer">
<a target="_blank" rel="license" href="http://creativecommons.org/licenses/publicdomain/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/publicdomain/88x31.png" /></a>
This sample website layout is dedicated to the <a target="_blank" rel="license" href="http://creativecommons.org/licenses/publicdomain/">Public Domain</a>.
</div>
</div>
</body>
</html>