0
votes
1answer
890 views

Php, get the referer from an ajax request

I need to get the full domain in which the user sent the ajax request to my server, and it should be somewhat secure. The $_SERVER['HTTP_REFERER'] Returns blank. What function should I use? Thanks ...
1
vote
2answers
212 views

how can I reliably check that requests to my service file have come from my website?

I have a service.php class that I use to service AJAX calls from my website. To prevent other people accessing the service using PHP CURL I would normally check the request has come from mysite, and ...
7
votes
3answers
735 views

How does Google Instant change the referer sent by the browser?

If you click on a result in Google Instant, the referer sent by your browser to the destination website contains a bunch of parameters, including the all important q=[autocompleted query] But you're ...
0
votes
1answer
698 views

PHP save a page then redirect to previous page(ajax)

I would like to ask for how to redirect to previous page (ajax paging). Example, Let's say currently I am in page 5, then I click on one record, after I edit it, I would like to go back to that page ...
0
votes
1answer
3k views

AJAX modal dialog, fire onload if referer == <whatever>

I'm trying to change my index.html to show a modal window if the referer to my site == (eg, if they come from Google, show a "Welcome Googler" dialog box with an image inside of it). I'm using ...