I have a php script that dynamically creates a png image. That image can be used on other sites. Is there any way to detect where my image is used in this php script?
Asked
Active
Viewed 45 times
1 Answers
0
Yes you can use the $_SERVER['HTTP_REFERER']
to see the referrer of the request.

smistry
- 1,127
- 1
- 9
- 9
-
__Note:__ This [isn't always available](http://stackoverflow.com/questions/6880659/in-what-cases-will-http-referer-be-empty). – naththedeveloper Apr 07 '14 at 08:49