I am working on a flow that will follow a URL (sent via email) to a PHP webpage with data in a table that is easily extracted with the HTML Get method, however... The URL actually links to a PHP web form in the below format which then redirects to the actual data upon submission. Any help to follow this redirect/submission to get the HTML from the subsequent page? I've tried to gather the HTML from the web form and use the HTML Post method with no luck (that returns only the default page HTML with no actual data).
The various field names and values clearly identify the record that is being retrieved.
<html>
<head>
<title>Redirect</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
please wait...
<form name="form1" action="show.php" method="post">
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
<input type="hidden" name="..." value="..." />
</form>
</body></html>
<script language="javascript" type="text/javascript">
document.form1.submit();
</script>