how to obtain the second page with file_get_contents

psychologia

New Member
The idea is to get all the page with file_get_contents for a history record.When I do \[code\]$original_file_div = file_get_contents("http://webpage.com/");\[/code\]I have a webpage that ask for an emailIf I enter to the webpage with any browser I see that page, but ... when I press refresh I have access to a new page.I tried to do:\[code\]$original_file_div = file_get_contents("http://webpage.com/");$original_file_div = file_get_contents("http://webpage.com/");\[/code\]but still have the email pageis there any way to make refresh throw file_get_contentsI DID TRY TO POST BUT DIDN'T WORK =(ADDED: The site is using Cookies
 
Back
Top