$title ='Create a new ticket'; include('elements/header.php'); ?>
$current_menu = 'ticket_create.php'; include('elements/menu.php'); ?>
$customer_info = $freeside->customer_info_short( array(
'session_id' => $_COOKIE['session_id'],
) );
if ( isset($customer_info['error']) && $customer_info['error'] ) {
$error = $customer_info['error'];
header('Location:index.php?error='. urlencode($error));
die();
}
//extract($customer_info);
$invoicing_list = preg_split('/\s*,\s*/', $customer_info['invoicing_list'] );
$requestor = $invoicing_list[0];
$error = $_GET['error'];
?>
Please fill in both the subject and message. Please provide as much information as possible. This will enable us to help you quickly.
include('elements/error.php'); ?>