I have an aspx page here. The page has a form with a post action:
<form name="form1" method="post" action="Average1_web.aspx" id="form1">
The result after submitting the form is itself an aspx page (Report_For_mthly_avg_Zonewise.aspx
).
I need to scrape the data from the result page for all the permutations and combinations of the form inputs. Is there any way that I can get the result of the post method in a php string rather than in the page (Report_For_mthly_avg_Zonewise.aspx
)?
Thanks