Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How can I get the client's IP address in a PHP webservice?

I've a small site that lets anonymous users to upload images. However, this obviously has the potential to be abused. How could I track/log relevant information (IP address etc) for each image that is uploaded? I'm using PHP and MySQL.

Thanks.

share|improve this question
2  
What part of doing this is your question about - serving the image, writing data into a database...? – Pekka 웃 Sep 30 '11 at 8:57

marked as duplicate by 0A0D, richq, sixlettervariables, Jacob, Jarrod Roberson Sep 30 '11 at 20:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 0 down vote accepted

$_SERVER

'REMOTE_ADDR' The IP address from which the user is viewing the current page.

$_SERVER['REMOTE_ADDR'];

You can find how to get relevant data for each user.

http://php.net/manual/en/reserved.variables.server.php

share|improve this answer

to getting the IP address of the user who upload the image, you just add the $_SERVER['REMOTE_ADDR'] to the image upload script, and you will get the IP address of the user.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.