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';
?>

Leave a Reply