when you use sessions, no data is stored in cookie, the cookie only holds a unique id that is needed to recognize the user, while whatever data you need to be persistent between pages is stored on the server (thus cannot be easily modified by the user).
also, in the default configurations session have a fallback mode that passes the id via url automatically in case the client doesn't accept cookies.