1 <? $title ='Create a new ticket'; include('elements/header.php'); ?>
2 <? $current_menu = 'ticket_create.php'; include('elements/menu.php'); ?>
5 $customer_info = $freeside->customer_info_short( 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);
17 $invoicing_list = preg_split('/\s*,\s*/', $customer_info['invoicing_list'] );
18 $requestor = $invoicing_list[0];
20 $error = $_GET['error'];
24 Please fill in both the subject and message. Please provide as much information as possible. This will enable us to help you quickly.
27 <? include('elements/error.php'); ?>
29 <FORM ACTION="process_ticket_create.php" METHOD=POST>
33 <td><b><? echo htmlspecialchars($requestor) ?></b></td>
37 <td><input type="text" name="subject" size="54"></td>
40 <td valign="top">Message</td>
41 <td><textarea name="message" rows="16" cols="72"></textarea></td>
45 <td><input type="submit" value="Create"></td>
50 <? include('elements/menu_footer.php'); ?>
51 <? include('elements/footer.php'); ?>