Hôm nay crawl data cái site cổ , nó làm paginate mà ko có phân trang, chỉ xài 1url cho 100 page, khi click next page thì nó dùng Javascript set biến currentpage, và submit form về server, nên tìm được hàm này get data theo page. Post lên để dành xài và share cho ai cần Code: $postdata = http_build_query( array( 'var1' => 'some content', 'var2' => 'doh' ) ); $opts = array('http' => array( 'method' => 'POST', 'header' => 'Content-Type: application/x-www-form-urlencoded', 'content' => $postdata ) ); $context = stream_context_create($opts); $result = file_get_contents('http://example.com/submit.php', false, $context); Code: https://stackoverflow.com/questions/2445276/how-to-post-data-in-php-using-file-get-contents