<?php
$url = "https://members.har.com/mhf/search.cfm?cid=782883&sitetype=Aws";
$html = file_get_contents($url);
// (Better: use cURL with proper headers and cookies)
// Parse $html — find just the `<form>` element you want
// Optionally adjust form `action` attribute to include absolute URL
echo $extracted_form_html;
?>
