No. Typically you cut and past the code into your forum. But I prefer to do it a little cleaner.
In "$boarddir/index.php" I look for:
require_once($sourcedir . '/Security.php');and add after it with:
require_once($sourcedir . '/yourscript.php');]Where "yourscript.php" is the script you want. The all you have to do is call it anywhere in one of your xx.index.php files.
Say for example yourscript had a function called "main_stuff()". All you will need to do is insert the following:
main_stuff();anywhere between echo ' .... ; statements...
Check it first with a debugger.
