Includes
Here is how to include phpFan Add-ons into a file so that they can be displayed to the public
AFFILIATES:
<?php include './includes/conf.inc.php'; $type = 'affiliates'; include INCLUDEPATH .'/affiliatesmore.php'; ?>
KEEP-IN-MIND:
<?php include './includes/conf.inc.php'; $type = 'keepinmind'; include INCLUDEPATH .'/keepinmindmore.php'; ?>
JOINED:
<?php include './includes/conf.inc.php'; $type = 'phpfan'; include INCLUDEPATH .'/phpfanmore.php'; ?>
LISTING:
<?php include './includes/conf.inc.php'; $type = 'list'; include INCLUDEPATH .'/listmore.php'; ?>
WISHLIST:
<?php include './includes/conf.inc.php'; $type = 'wishlist'; include INCLUDEPATH .'/wishlistmore.php'; ?>
