所以我有一个网站http://example.com 还有一个我想登录的网站;http://target.com 我想要一个脚本,可以在我的站点http://target.com填写登录表单(用户名和密码)。
所以当用户点击http://example.com/login.php&username=John&password=12345
他应该直接登录http://target.com并发送到欢迎页面。
我得到了这个代码;
$url = "http://target.com";
$post = "username=John&password=12345&login=++Ba%F0lan++";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
echo curl_exec($ch);
curl_close($ch);
但它没有将我转发到欢迎页面。相反,它在http://example.com上显示错误(找不到页面)
此外,它没有从 url 获取用户名和密码数据。但我想我以后会自己解决。
有什么帮助吗?