1 <? $title ='Open Tickets'; include('elements/header.php'); ?>
2 <? $current_menu = 'tickets.php'; include('elements/menu.php'); ?>
5 $customer_info = $freeside->customer_info( array(
6 'session_id' => $_COOKIE['session_id'],
9 if ( isset($customer_info['error']) && $customer_info['error'] ) {
10 $error = $customer_info['error'];
11 header('Location:index.php?error='. urlencode($error));
15 extract($customer_info);
18 <? include('elements/ticketlist.php'); ?>
20 <? include('elements/menu_footer.php'); ?>
21 <? include('elements/footer.php'); ?>