我使用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