Установить куки на 24 часа на весь сайт
setcookie("user-id", $id, time() + (3600 * 24), '/');
Удалить куки
setcookie("user-id", '', time() - 3600);