Exemplo n.º 1
0
Arquivo: ward.php Projeto: haoa2/SS
function unward($secret_id, $user_id)
{
    $l_ = new Ward();
    $l = $l_->where("secret_id = {$secret_id} and user_id = {$user_id}");
    $l[0]->drop();
    return 1;
}