summaryrefslogtreecommitdiff
path: root/ng_selfservice/quotation_order.php
blob: d35eacbb283b6e82129f150a48778d9820677052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<? require('elements/session.php');

$dest = 'services.php';

$args = array( 'session_id' => $_COOKIE['session_id'] );

$results = $freeside->quotation_order($args);

if ( isset($results['error']) && $results['error'] ) {
    $dest = 'quotation.php?error=' . $results['error'];
}

header("Location:$dest");

?>