Hello there, I am having an issue with HTML_QuickForm. When I try to send the form to another page, it does not seem to validate the form. Any suggestions. // Load the main class require_once 'HTML/QuickForm.php'; // Instantiate the HTML_QuickForm object $form = new HTML_QuickForm('firstForm', 'get', './somepage.html'); ---- ELEMENTS / RULES ---- // validate form if ($form->validate()) { ?? $form->submitValues(); exit; } Thank you Atif K