Basic syntax question
Posted: Tue Oct 27, 2009 12:43 pm
is there a shorter way to write this:
if (($curZip != '') && ($curFirst != '') && ($curLast != '')) {
}
if (($curZip != '') && ($curFirst != '') && ($curLast != '')) {
}
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
if ($curZip != '' && $curFirst != ') && $curLast != '')