I want to add a field to the form to show where they came from

The place to talk about things that are related to CMS Made simple, but don't fit anywhere else.
Post Reply
ozdecor
Forum Members
Forum Members
Posts: 15
Joined: Mon Sep 07, 2009 12:45 am

I want to add a field to the form to show where they came from

Post by ozdecor »

hello
I've searched here butto no avail.
I want to add a field to the form to show  where they came from. We have visitors from different locations like referrers websites or adwords, and we wantto have a hidden field on the form to chw us where the person came from before they filled the form out. IS this possible?

Thanks
ian
colinmcc
Forum Members
Forum Members
Posts: 11
Joined: Fri Oct 29, 2010 12:06 am

Re: I want to add a field to the form to show where they came from

Post by colinmcc »

Yes, the referrer's url is available to PHP in $HTTP_REFERER, so get it into a variable like this:

Code: Select all

$referer=@$HTTP_REFERER; 
and then in your form use $referer as the value of your hidden field.
ozdecor
Forum Members
Forum Members
Posts: 15
Joined: Mon Sep 07, 2009 12:45 am

Re: I want to add a field to the form to show where they came from

Post by ozdecor »

i added
$referer=@$HTTP_REFERER;
as the value for the hidden field, and it still does not pass the referrer info on. What am i missing?

ian
Peciura

Re: I want to add a field to the form to show where they came from

Post by Peciura »

Make sure "Process smarty tags within field?:" is ticked for hidden field.
Value should be
{$smarty.server.HTTP_REFERER}
Post Reply

Return to “The Lounge”