- Mar 13, 2016
- 1,206
- 2,650
Hi,
I want to experiment making a tipping bot for the forum
i want to get some php that will login to an account and send PMs to poeple
here's the code i have so far.
doesn't seem to get me logged in...
some help getting started would be appreciated.
I want to experiment making a tipping bot for the forum
i want to get some php that will login to an account and send PMs to poeple
here's the code i have so far.
doesn't seem to get me logged in...
Code:
$url = 'https://bitco.in/forum/login/login';
$data = array('login' => 'adamstgbit', 'password' => '***BLA***');
// use key 'http' even if you send the request to https://...
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) { /* Handle error */ }
echo $result;