Alumni Project Software
Software for managing alumni is now available, licensed under the GNU General Public License version 3 or (at your choice) later. Download gzipped tar here.
Setup Instructions (for *nix)
gzip -d alumnidb.tgz -c > alumni/alumnidb.tar
cd alumni
tar -xf alumnidb.tar
- Create, in a database of your choice, a table named prefix_Info, prefix_Fields, and prefix_Emails, where 'prefix_' is any chosed prefix, which need not end with the underscore.
- Fill in the 'Settings.php' file with the necessary information
- Where you wish to display the alumni database, insert the following code (in php tags):
require_once("alumni/inc.php"); $alumnidb=new AlumniDB($loggedin); $alumnidisplay=new ADB_Display($alumnidb); $alumnidisplay->show(); - If it doesn't work, email the creator for help.

