|
|
 |
Re: FN-FORUM Visitor tracking
date posted 25th January 2001 22:00
Gary wrote :
> but basically writing it off the top of my head it was
something like:-
@values = split (/&/, $ENV{'QUERY_STRING'});
$shop_id = $values[0];
@nvpairs=split(/; /, $ENV{'HTTP_COOKIE'}); <
I wish I could do that.
Bob.
----- Original Message -----
From: Gary Mortimer [EMAIL REMOVED]
To: [EMAIL REMOVED]
Sent: Thursday, January 25, 2001 8:51 PM
Subject: RE: FN-FORUM Visitor tracking
> Hi Ray,
>
> I've recently implemented something similar, basically every partner is
> assigned a unique id number,
> this id is then incorporated within the URL the partner uses to link to
your
> site. When a user clicks on the URL you can determine where they are
coming
> from and store/pass this id anyway you choose and log it along with the
> order details.
>
> I have this script in perl somewhere and would be happy to dig it out for
> you if required, but basically writing it off the top of my head it was
> something like:-
>
> @values = split (/&/, $ENV{'QUERY_STRING'});
> $shop_id = $values[0];
>
> @nvpairs=split(/; /, $ENV{'HTTP_COOKIE'});
>
> foreach $pair [EMAIL REMOVED] { ($name, $value) = split(/=/, $pair);
> $cookie{$name} = $value; }
>
> $session = $cookie{'refer'};
>
> print "Content-type: text/html", "
";
> print "Set-Cookie: refer=$shop_id; path=/", "
";
>
> Not the best example but hope it points you in the right direction.
>
> Cheers
> Gary
>
> -----Original Message-----
> From: [EMAIL REMOVED]
> [EMAIL REMOVED] Behalf Of Ray McGinty
> Sent: Thursday, January 25, 2001 7:19 PM
> To: [EMAIL REMOVED]
> Subject: FN-FORUM Visitor tracking
>
>
> One of my clients has entered a joint marketing arrangement with one of
> the big portal sites with others to follow.
>
> They are working on a percentage of sales, so I need to provide some
> visitor tracking.
>
> I was just wondering what methods other freelancers use
>
> Thanks in advance.
>
> Ray McGinty
>
> =======================================================
> Ray McGinty Information Design
> specialising in design for the web, e-commerce,
> multimedia CD-ROM and print
> Tel 0191 237 2816
> Fax 0191 237 4774
> [EMAIL REMOVED]
> www.rmid.co.uk
> =======================================================
>
>
> ============================================================
>
> * Free listing for freelancers
> * Free to advertise jobs
> * Free jobs distribution service
> * Free database of 1000 freelancers
>
> Freelancers and Freelance Jobs
> http://www.freelancers.net
>
> To post to the Forum:
> [EMAIL REMOVED]
>
> To unsubscribe please email:
> [EMAIL REMOVED]
>
> If you have difficulties unsubscribing please email:
> [EMAIL REMOVED]
>
> To subscribe to the digest for this list or for further information please
> visit:
> http://www.freelancers.net/forum.html
>
>
> ============================================================
>
> * Free listing for freelancers
> * Free to advertise jobs
> * Free jobs distribution service
> * Free database of 1000 freelancers
>
> Freelancers and Freelance Jobs
> http://www.freelancers.net
>
> To post to the Forum:
> [EMAIL REMOVED]
>
> To unsubscribe please email:
> [EMAIL REMOVED]
>
> If you have difficulties unsubscribing please email:
> [EMAIL REMOVED]
>
> To subscribe to the digest for this list or for further information please
visit:
> http://www.freelancers.net/forum.html
>
|
 |
|