If I wanted to check fields for blanks except for certain fields, and I wanted there to be more than one exception like 'siteLink', what is the format for doing that? is it:
if ($key != "siteLink","somethingElse","somethingElse") ?
I tried every permutation but keep getting an error, i'm sure it's a simple fix though....
/ check each field except middle name for blank fields /
foreach ($HTTP_POST_VARS as $key => $value)
{
if ($key != "siteLink") // want more exceptions here...how
// do I list them?
{
if ( $value == "" )
{
$blank_array[$key] = "blank";
}
}
}