Link to home
Start Free TrialLog in
Avatar of vernk
vernk

asked on

Will perl set a value that the browser retains?

I am trying to track customer referal sales. I want a customer to hit a banner link on another site that sends him to my site and sets a CUSTID=somenumber variable value. Then, he can move around my site as he wishes.....if he decides to buy my product can i have him hit a link to a .cgi script that will place the CUSTID=somenumber variable in another form that posts to a script i have that reads the CUSTID=somenumber pair.
 Can this be done in perl, if so, how?
ASKER CERTIFIED SOLUTION
Avatar of nchen091098
nchen091098

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ozo
you can also set an <input type=hidden> field,
or check $ENV{REMOTE_USER} after the client has responded to a
WWW-Authenticate:
header
Avatar of vernk
vernk

ASKER

Thanx for the help!