PHP code:
<?php
require_once("config.php");
if(login($name, $pw)) {
echo "User: $name\nPassword: $pw";
} else echo 'You are not login! Please do it right now if you still want to live! :@';
?>
In cpp code:
std::cout<<Response.GetBody()<<"\n\n";
Everything is cool and work but.... I don't recive $name and, $pw values and i think the reason is that i read them from cookies.
Is there any solutions or advices for me please?