<?php
############################################################
# \-\-\-\-\-\-\ AzDG - S C R I P T S /-/-/-/-/-/-/ #
############################################################
# AzDGDatingPlatinum Version 1.8.0 #
# Written by AzDG (hide@address.com) #
# Created 24/10/02 Last Modified 22/03/06 #
# Scripts Home: http://www.azdg.com #
############################################################
# File name custom.php #
# File purpose Custom #
# File created by AzDG <hide@address.com> #
############################################################
/*
Example to create custom multilanguage pages
Rename this file to your_name.php and put it into main script directory.
Set link to this file in the templates/YOUR_TEMPLATE/header.php as:
<a href="<?=C_URL?>/your_name.php?l=<?=LANGUAGE?>">Your description</a>
To support Multilanguage content of this file use:
<?if(LANGUAGE == 'default'){?>
Here the file content on default language
<?}?>
*/
include_once 'include/config.inc.php';
include_once 'include/options.inc.php';
include_once 'include/security.inc.php';
include_once 'include/functions.inc.php';
include_once 'templates/'.C_TEMP.'/config.php';
include_once C_PATH.'/header.php';
// HTML code goes here
?>
<?if(LANGUAGE == 'default'){ /* Begin */ ?>
Here the file content on default language
<? } /* End */ ?>
<?if(LANGUAGE == 'fr'){ /* Begin */ ?>
Here the file content on french
<? } /* End */ ?>
<?php
include_once C_PATH.'/footer.php';
?>