Jump to content

[SOLVED] foreach question


dadamssg

Recommended Posts

im trying to run through each on of my four text fields to see if any are blank and then set an error message. i have this, but it instead of just having one error message, it sets four(the amount of text fields i have). how do i rearrange it to only set it once if any of the four are left empty?

 

foreach($_POST as $field => $value)
{
  if($value == "")
$_SESSION['checkmail'] .= "<div class='blue'><center>Please fill in all blanks.</center></div>";
}

Link to comment
https://forums.phpfreaks.com/topic/159533-solved-foreach-question/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.