13 lines
394 B
PHP
13 lines
394 B
PHP
<?php
|
|
require_once($_SERVER['DOCUMENT_ROOT']."/config.php");
|
|
|
|
ini_set('display_errors', 1);
|
|
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE);
|
|
|
|
if($_SESSION['id'] && $_GET['id'] && is_numeric($_GET['id'])) {
|
|
|
|
$get = clearInputData($_GET);
|
|
$client = new Clients;
|
|
$client->get($get['id']);
|
|
include($_SERVER['DOCUMENT_ROOT']."/templates/client_info_for_events.php");
|
|
} |