Is it possible to use php or javascript to view an external URL from my webpage (in an iframe for example) but with a given proxy and set the user agent?
I know you can set the user agent with:
ini_set('user_agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9');
But this would need to be for an iframe (or something similar) to view the external URL within my webpage similar to how http://incloak.com/ works.
Im not looking for code, just for methods i should use and how i should go about writing this up. I don't know what this involves.