I want remote login to forum here : http://community.invisionpower.com/index.php?app=core&module=global§ion=login Code (markup): i will pay for it ... contact me via PM
I detect something sneaky going on. Remembering that PHP is all server side, you won't be able to log the client personally in to the website. However, the process of logging in via PHP is really quite simple. When you login, you're actually sending an HTTP POST request to their server, with the information. I suggest you look at the request being sent (download a Firefox addon called Live HTTP Headers, open it just before you hit submit. You'll find the URL you're sending the request to, and the POST fields that go along with it). Once you have that information, you simply need to replicate it in PHP. One option is to use Curl. Here is a simple Curl class which may simplify the process for you: http://semlabs.co.uk/journal/object-oriented-curl-class-with-multi-threading