Greetings
I created an employment application using php and I neglected to add any error detection.
There are more than 100 entries, yet not all are necessary.
Is there a way to add error detection using
one line to isolate the mandatory entries?
Plus if there are errors, I would like to retain all info previously entered...
Error detection example…
Code:
<?
if ($_POST[sender_email] == ""){
$email_err = "<font color=red>Please enter your E-Mail!</font><br>";
$send="no";
?>
Jeff