I'm running this script to make sure all fields are filled in on a form:
foreach($_POST as $p)
{
if(!$p)
{
header("Location: signup.php?error=3");
exit();
}
}But I need to exclude one field on the form from being checked - Street2. How could I do this? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

