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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.