Jump to content

file_get_contents()


jwilson122

Recommended Posts

Okay, so I'm trying to make a service to detect proxies. Heres what I need to know..

This is how I have it set up:

1. I have a file on mysite.com/check.php

2. My clients create a page to load my check.php file on THEIR website using file_get_contents(); Like: file_get_contents("http://mysite.com/check.php?ip=$_SERVER['REMOTE_ADDR']");

3. My system checks for a proxy using HTTP vars, how would I get them?? Like.. if I echo $_SERVER['REMOTE_ADDR']; out on the page on MY end, it will echo the servers IP to check is using step #2 with file_get_contents();

 

Can anyone please help me? I am willing to pay a little, if needed :/

Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/228669-file_get_contents/
Share on other sites

$_SERVER["REMOTE_ADDR"] on your server will be the IP address of the client's server.

 

echo $_GET["ip"];

 

Yeah i know. But, how do I get vars like..

$_SERVER['HTTP_X_FORWARDED_FOR']  ||

$_SERVER['HTTP_X_FORWARDED']  ||

$_SERVER['HTTP_FORWARDED_FOR']  ||

$_SERVER['HTTP_CLIENT_IP']  ||

$_SERVER['HTTP_VIA']  ||

$_SERVER['HTTP_USER_AGENT_VIA']

 

from my customers website visitor?

Link to comment
https://forums.phpfreaks.com/topic/228669-file_get_contents/#findComment-1178981
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.