Re: Reading a cookie
- From: Jerry Stuckle <jstucklex@xxxxxxxxxxxxx>
- Date: Tue, 06 Feb 2007 16:50:14 -0500
Jerim79 wrote:
I did try to find the answer to this before posting, so this isn't a
knee jerk reaction.
What I am trying to accomplish is to have a script that opens a
cookie, reads a value, and then use a switch/case to take action based
on that value in the cookie. I want to set the cookie manually, so I
don't need setcookie(). I see that in PHP it stores the cookie in
memory. Is there a way to have PHP just read a cookie from the desktop
machine? Does it have to set it first? Am I better off with Javascript
for this?
The situation is that we have 4 computers. We also have 4 different
types of specialty printers, each for a different function. We don't
know which computer will be hooked up to which printer, and they may
be switched out routinely. We are trying to develop a simple script
that reads the value of the cookie which tells it which printer to
print to and what to print. This way, we can easily switch computers
around as needed, and will only need to change the value in the cookie
to have it access the correct code so that it prints the correct
information in the correct format.
You can use a cookie for this. But here's a suggestion - have a password-protected admin page which sets the cookie. When they move the computer, they have to log into the admin page and tell it which printer to use.
This then sets the cookie, which is now available for the rest of your pages. Of course, you would want to ensure that cookies are not cleared when the browser shuts down - at least not for your site.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@xxxxxxxxxxxxx
==================
.
- Follow-Ups:
- Re: Reading a cookie
- From: Jerim79
- Re: Reading a cookie
- References:
- Reading a cookie
- From: Jerim79
- Reading a cookie
- Prev by Date: loaded latest edition of Apache http server on XP, and installed php on that server...
- Next by Date: Re: Interesting date
- Previous by thread: Re: Reading a cookie
- Next by thread: Re: Reading a cookie
- Index(es):
Relevant Pages
|