Tagged Questions
0
votes
2answers
267 views
using sessions to pass http_referer php
here is the ordeal:
on index.php
<?php
session_start();
$url = $_SERVER['HTTP_REFERER'];
$_SESSION['abc'] ='$url';
?>
i echo on the page $_SERVER['HTTP_REFERER']; and i get what ...
0
votes
2answers
533 views
$_SERVER['HTTP_REFERER'] shows current page
I have a tracking script that I use to save analytic data to our company database. We have quite a few websites (around 2000 domains) and PPC campaigns and the script I'm using works just fine.
I ...
1
vote
3answers
343 views
How to save current url ID to a session and then update it upon viewing the next submission
Upon refreshing http://mydomain.com, it will generate a random ID to display on the page.
For example, http://mydomain.com generates 54 the first time, and upon reloading, 112, etc.
I'd like to save ...
12
votes
2answers
10k views
How to save http referer in rails
I'm trying to save the site that a user came from when they sign up. Right now I have a before_filter in my ApplicationController:
before_filter :save_referer
def save_referer
unless ...