If Safari does not support the require attribute for inputs, how can I require a few specific inputs in my form? Currently, I am using this code in my PHP file triggered by the form to require all fields:
$req = '1';
that works effectively for requiring them all but I only want some of them to be required as opposed to all of them. What are my options assuming I'm not going to use the "require" attribute?