Hello everyone =)
much as i understand the concept of a web session, i wonder why we have to use it. if we have to keep track of a user, why don't we just do the following:
1)validate the user
2)by using the user_id, retrieve anything that the user request
why do we have to borther about tracking the user when supposedly the user wants to buy something and does the following:
1)click on "buy"
at the back, what we do can simply be:
1)write into the database the userID and the itemID
and we can also keep track of what the user buy by reading from this particular table. Since this is the case, why do we still want a sessionID or even start a session?
any help would be appriciated. thanx