Example #1
0
    $userContObj->deleteTag($_GET['tagId'], $_SESSION['user_id']);
}
// update favorites
if (isset($_GET['fax_id']) && isset($_GET['fav_val']) && $_GET['fav_val'] != "") {
    $faxObjCon->updateFavorites($_GET['fax_id'], $_GET['fav_val']);
}
// update fax read count
if (isset($_GET['fax_id'])) {
    $faxObjCon->updateReadCount($_GET['fax_id']);
}
// updating seen or Unseen
if (isset($_GET['Sfax_id']) && $_GET['section'] == "seen") {
    $faxObjCon->updatefaxSeenStatus($_GET['Sfax_id']);
}
if (isset($_GET['email']) && $_GET['email'] != '') {
    $verify = $userContObj->checkEmail($_GET['email']);
    if ($verify > 0) {
        echo "Email id exists!.";
    } else {
        echo "";
    }
}
// adding tags to faxs
if ($_GET['section'] == "tagsAdd" && isset($_GET['tagfaxs'])) {
    $faxObjCon->updateFaxTags($_GET);
}
// adding tags to Outbox faxs
if ($_GET['section'] == "Outbox_tagsAdd" && isset($_GET['tagfaxs'])) {
    $faxObjCon->updateOutboxTags($_GET);
}
// checking for duplicate tags