Is there a way POSSIBLE to use Server-Side Cookies and not client side. I've found out many people disable cookies, and if I can't use server-side cookies, I'll have to use my database and rig a way to keep data in it by tracking IP addresses... That's the last thing I want to do.

    Yea there called Sessions. Read up on them.

      I saw them, but there is a client cookie for seesion ID from what I understand... is this right?

        No all data from a Session is stored on the server.

        Cookies however

        setcookie();

        is on the clients computer

          You are correct, the session ID can be stored as a cookie. But, you can pass the session ID however you'd like. GET and POST are 2 possible ways of passing the session ID without using cookies.

            Write a Reply...