27 lines
828 B
PHP
27 lines
828 B
PHP
<?php
|
|
/*******************************************************************\
|
|
* Exchangerix v2.0
|
|
* http://www.exchangerix.com
|
|
*
|
|
* Copyright (c) 2018 Exchangerix Software. All rights reserved.
|
|
* ---------- Exchangerix IS NOT FREE SOFTWARE ----------
|
|
\*******************************************************************/
|
|
|
|
session_start();
|
|
require_once("inc/config.inc.php");
|
|
|
|
$content = GetContent('help');
|
|
|
|
/////////////// Page config ///////////////
|
|
$PAGE_TITLE = $content['title'];
|
|
$PAGE_DESCRIPTION = $content['meta_description'];
|
|
$PAGE_KEYWORDS = $content['meta_keywords'];
|
|
|
|
require_once ("inc/header.inc.php");
|
|
|
|
?>
|
|
|
|
<h1><i class="fa fa-question-circle"></i> <?php echo $content['title']; ?></h1>
|
|
<p><?php echo $content['text']; ?></p>
|
|
|
|
<?php require_once("inc/footer.inc.php"); ?>
|