$title ='My Account'; include('elements/header.php'); ?>
$current_menu = 'main.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);
?>
Hello echo htmlspecialchars($name); ?>
if ( $signupdate_pretty ) { ?>
Thank you for being a customer since echo $signupdate_pretty; ?>
} ?>
Your current balance is: $ echo $balance ?>
include('elements/menu_footer.php'); ?>
include('elements/footer.php'); ?>