View Single Post
Old Mar 5th, 2006, 4:57 AM   #4
Arevos
Programming Guru
 
Arevos's Avatar
 
Join Date: Aug 2005
Location: England
Posts: 1,499
Rep Power: 5 Arevos is on a distinguished road
The HTTP Referer is set by the HTTP client, usually the web browser, when it accesses a site. If you want to access a site from PHP, you can use CURL. CURL has an option which allows you to set the HTTP Referer:
curl_setopt($ch, CURLOPT_REFERER, "yourreferurl")
I'm not sure if that is what you are asking, because you have been very vague in your question.
Arevos is offline   Reply With Quote