Hi Alex,
I'm a newbie myself, but here's how I would go about it. When the form is submitted, you check each form input for a valid entry. If input is invalid, you could set an "invalid variable" corresponding with the name of the field, like this:
Code:
if (THE EMAIL ADDRESS IS WRONG) {
$invalidemail = 1;
}
Then, if any of the invalid variables exist after you've checked them all, send the visitor back to the form, only this time, make sure that the script looks for the existent of the invalid variable for each form field. This would go something like this:
Code:
<?php
if ($invalidemail) {
echo("The Email address you provided was wrong.");
}
?>
Email address: <INPUT TYPE="text" name="email">
I'm sure the naming of the variables could be smarter so you could run through the whole thingy using a loop, but this will probably work pretty good as well.
Good luck !
Bookmarks