Hi, I want to ask if there is a code that help us to check if the all form are full or not ? can anyone help me, please?
$empty = false; foreach($_POST as $value) { if($value == '') { $empty = true; } }
should work.
where should I put this method ? in the form or in the engine ?
in your php code, right after <?php
should I write for each variable this method ?
or there is another way to do that ?