Is there any way that I can run a php (I have access to that) and the php grabs my ip and fetch something from another site pretending to be me(by proxy-ing my ip to remote location)?
Say my ip is : 192.353.89.xx
My server php grabs my ip when I execute it.
Then it fetches something from a remote site with my ip and processes and echos to me so that the remote server thinks its me pulling the info..
any ideas guys?
That cannot be done using PHP.
You can make the server fetch the page from the remote endpoint (using curl or file_get_contents), but not spoof your IP address.