Html DOM提交表单并处理重定向再次提交

时间:2017-08-06 13:41:05

标签: php html forms redirect simple-html-dom

我使用simple html dom并提交form,但重定向我,我可以获得我提交的页面的 结果。

如何使用提交的内容访问新页面,以便在新页面上提交第二个内容?

我的代码

include("simple_html_dom.php");
$reguest=array(
    'http'=>array(
        'header'=>"Content-Type: application/x-www-form-urlencoded",
        'method'=>'POST',
        'content'=>http_build_query(array(
            'd1'=>'test',
            'd2'=>'test2'
            'd3'=>'test3'
        )),
    )
);
$context= stream_context_create($reguest);
$html = file_get_html("url",false,$context);
echo $html; //shows the 'url' not the page that I should get after submit

0 个答案:

没有答案