0, "You are not studying this deck."); assert_error($info['need_check'] == 0, 'This deck needs checking first. Please return here first, it should do it.'); assert_error($info['cardnumber'] <= $info['last_card'] + 1, "You must first add previous cards to your study list."); $level = intval($args[3]); assert_error($level >= 0 && $level <= 7, "That level is invalid."); $intervals = array(999999, 1, 3, 5, 8, 16, 24, 999999); if ($info['cardnumber'] == $info['last_card'] + 1) { sql("INSERT INTO card_study(deck_study, card, level, next_review) ". "VALUES($studyid, $cardid, $level, ADDDATE(CURDATE(), INTERVAL " . $intervals[$level] . " DAY))"); sql("UPDATE deck_study SET last_card = last_card + 1 WHERE id = $studyid"); } else { assert_error($info['csid'] > 0, "Deck is inconsistent."); sql("UPDATE card_study SET level = $level, next_review = ADDDATE(CURDATE(), INTERVAL " . $intervals[$level] . " DAY) WHERE id = " . $info['csid']); } header("Location: deck-study-$studyid"); die();