37 lines
871 B
PHP
37 lines
871 B
PHP
<?php
|
|
ob_start();
|
|
if(!isset($_SESSION['session_id'])) {
|
|
session_start();
|
|
$_SESSION['session_id'] = session_id();
|
|
}
|
|
|
|
date_default_timezone_set('Asia/Kolkata'); ?>
|
|
<?php $user_id = 0; ?>
|
|
<!--Bootstrap-->
|
|
<?php require_once "includes/imp_files.php";?>
|
|
|
|
<?php require_once 'views/header.php';?>
|
|
<?php //echo $OrderClass->get_username(3);die; ?>
|
|
<?php include_once 'acc_deact.php';?>
|
|
|
|
<!--Buy Sell div-->
|
|
<?php include_once 'views/buy_sell_div.php'; ?>
|
|
|
|
<!--Buy Sell Lists-->
|
|
<?php include_once 'views/buy_sell_list.php'; ?>
|
|
|
|
<!--My Orders List-->
|
|
<?php include_once 'views/myOrdersList.php'; ?>
|
|
|
|
<!--Traders and Transactions List-->
|
|
<?php include_once 'views/traders_trans_list.php'; ?>
|
|
|
|
<!--Messages-->
|
|
<?php include_once 'views/user_messages.php'; ?>
|
|
|
|
<!--Transfers-->
|
|
<?php include_once 'views/transfers.php';?>
|
|
|
|
<!--footer-->
|
|
<?php include_once 'footer.php'; ?>
|