HTTP is Stateless
There is nothing in the HTTP protocol that will tie subsequent requests together. This is a common problem faced by web developers when working on sites that require a shopping-cart type of functionality.

Additionally, given Apache's multi-process architecture, subsequent requests from the same user may be handled by different processes.