Esempio n. 1
0
    //action set Id number to run on the posted contact
    $actionId = 123;
    //grab our posted contact fields
    $contact = array('Email' => $_POST['Contact0Email'], 'FirstName' => $_POST['Contact0FirstName'], 'LastName' => $_POST['Contact0LastName']);
    //grab the returnURL
    $returnURL = $_POST['returnURL'];
    //dup check on email if it exists.
    if (!empty($contact['Email'])) {
        //check for existing contact;
        $returnFields = array('Id');
        $dups = $app->findByEmail($contact['Email'], $returnFields);
        if (!empty($dups)) {
            //update contact
            $app->updateCon($dups[0]['Id'], $contact);
            //run an action set on the contact
            $app->runAS($dups[0]['Id'], $actionId);
        } else {
            //Add new contact
            $newCon = $app->addCon($contact);
            //run an action set on the contact
            $app->runAS($newCon, $actionId);
        }
        //Send them to the success page
        header('location: ' . $returnURL);
    } else {
        //Let them know how it is ;)
        die('You must provide at least an email address.');
    }
} else {
    echo "Connection Error";
}
Esempio n. 2
0
File: calc.php Progetto: sairiz/post
}
$_SESSION['hargaLG'] = $hargaLG;
$_SESSION['hargaKB'] = $hargaKB;
$_SESSION['hargaXS'] = $hargaXS;
$_SESSION['hargaXST'] = $hargaXST;
$_SESSION['hargaMT'] = $hargaMT;
$_SESSION['pos'] = $pos;
$_SESSION['posDiskaun'] = $posDiskaun;
$_SESSION['jumlah'] = $jumlah;
if ($_SESSION['details']['Id']) {
    if (!$app) {
        require "iSDK/isdk.php";
        $app = new iSDK();
        $app->cfgCon("mtouch");
    }
    if ($kuantitiXS > 0) {
        $action = $app->runAS($_SESSION['details']['Id'], 288);
    }
    if ($kuantitiXST > 0) {
        $action = $app->runAS($_SESSION['details']['Id'], 535);
    }
    if ($kuantitiKB > 0) {
        $action = $app->runAS($_SESSION['details']['Id'], 203);
    }
    if ($kuantitiLG > 0) {
        $action = $app->runAS($_SESSION['details']['Id'], 201);
    }
    if ($kuantitiMT == 1) {
        $action = $app->runAS($_SESSION['details']['Id'], 137);
    }
}