Beispiel #1
0
}
if (isset($_SESSION['clientID'])) {
    $clientID = $_SESSION['clientID'];
    $_SESSION['clientname'] = $clientname;
    $_SESSION['contactname'] = $contactname;
    $_SESSION['username2'] = $username;
    $_SESSION['emailadd'] = $emailadd;
    $_SESSION['phoneno'] = $phoneno;
    $_SESSION['faxno'] = $faxno;
    $_SESSION['extrainfo'] = $extrainfo;
    $_SESSION['address'] = $address;
    $_SESSION['status'] = $status;
}
$db = new database();
$mh = new validator();
if (!$mh->validateEmail($emailadd)) {
    // TODO: changeme
    echo '<script>alert( "Please input a valid e-mail address." );history.go(-1);</script>';
    exit;
}
if (isset($_POST['task'])) {
    switch ($_POST['task']) {
        case 'add':
            $sql = "";
            break;
        case 'edit':
            $sql = "select * from corporate_partners where username = '******' and clientID !=" . $_SESSION['clickclientID'];
            $db->query($sql);
            $db->fetcharray();
            if ($db->getnumrows() > 0) {
                echo '<script>alert("Username is already taken by someone, Please choose another username.");history.go(-2);</script>';