Reputation: 823
I'm using the function file_get_contents("www.example.com");
.
Now i want to know if the website www.example.com
see the user ip or the serverip from the webpage?
Upvotes: 0
Views: 37
Reputation: 782285
Since PHP runs on the server, not the client, the website sees the server IP.
Upvotes: 1