I am trying to solve this problem for last few days and I don't have a clue. I need to send a request to another web site. Since I am also using that site's captcha, I need to get cookie in order to successfully send my request. This is my code. How can I manage to save cookie the first time I send a request and also to set that cookie and send it along with my POST request to that web site?
Thank you for your answer, I know the question is basic but I can not combine anything.
$d = $_REQUEST["date"];
$t = $_REQUEST["table"];
$r = $_REQUEST["registration"];
$url = 'https://www.huo.hr/hrv/provjera-osiguranja/11/';
$data = array('date' => "$d", 'city' => "$t", 'reg1' => "$r", 'security_code' => 'ffff');
$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) {
echo "error";
} else {
echo "<div style='overflow-y: scroll; height:400px;'>" . $result ."</div>";
}
You can set up a "cookie jar" with cUrl and store the result of the cookie jar on your server to reference it later.
Something like:
Now, if you do the POST or GET requests to the other website, you can store it inside the cookie jar, hopefully this helps.