Comma separated list

David McGlone <[email protected]>
Newsgroups gmane.comp.php.database
Message-ID <2350993.UphdFzmNDe@buddy>
Hi all

I've moved on to learning checking forms for valid imput and when doing thing 
that are repetive, like

if ($_POST['first'] == "") {  
       $errors .= 'Please enter a valid name.';
     }
if ($_POST['second'] == "") {  
       $errors .= 'Please enter a valid name.';
     }

I can think of a slightly better way like

if($_POST['first'] || $_POST['second'] || $_POST['third'] ==){
bla bla
}

I think I could also use empty(), not sure though, But I belive there are much 
easier ways. What would anyone here do?

If it were me, I'd use the one that uses the or operator.

David M.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.