Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Last active October 4, 2022 14:23
Show Gist options
  • Select an option

  • Save Octagon-simon/4fb474230998be06350aca8e3a66f450 to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/4fb474230998be06350aca8e3a66f450 to your computer and use it in GitHub Desktop.
<?php
//begin validation
if ($DemoForm->validateFields($valRules, $_POST) === true){
//process form data here
}else{
//retrieve & display errors
print('<script>
window.addEventListener(\'load\', function(){
showErrors(' . $DemoForm->getErrors() . ');
})
</script>');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment