I found some examples of login with cURL and I am using this ...
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://myhost/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);...
asked by
15.11.2017 / 19:07