hey,
i don't know how to make it smaller but should it be
if
(!empty($_SESSION['add']['type'])
&& !empty($_SESSION['add']['start_date'])
&& !empty($_SESSION['add']['end_date'])
&& !empty($_SESSION['add']['name'])
&& !empty($_SESSION['add']['county'])
&& !empty($_SESSION['add']['discription'])
&& !empty($_SESSION['add']['StartingDay'])
&& !empty($_SESSION['add']['StartingMonth'])
&& !empty($_SESSION['add']['StartingYear'])
&& !empty($_SESSION['add']['EndingDay']})
&& !empty($_SESSION['add']['EndingMonth'])
&& !empty($_SESSION['add']['EndingYear']))
{//run the insert query}
else
{//show error since one or more fields above are blank}

?
From: "Andy B" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: [PHP] very large and long if statement
Date: Wed, 7 Apr 2004 18:47:02 -0400

I have this very large and long if statement:
if
(!empty($_SESSION['add']['type'])
&& !empty($_SESSION['add']['start_date']
&& !empty($_SESSION['add']['end_date'])
&& !empty($_SESSION['add']['name'])
&& !empty($_SESSION['add']['county'])
&& !empty($_SESSION['add']['discription'])
&& !empty($_SESSION['add']['StartingDay'])
&& !empty($_SESSION['add']['StartingMonth'])
&& !empty($_SESSION['add']['StartingYear'])
&& !empty($_SESSION['add']['EndingDay']})
&& !empty($_SESSION['add']['EndingMonth'])
&& !empty($_SESSION['add']['EndingYear']))
{//run the insert query}
else
{//show error since one or more fields above are blank}
was wondering if there was really any way to condense that down to something
any better? all fields in the form that those came from are required...


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


_________________________________________________________________
Watch LIVE baseball games on your computer with MLB.TV, included with MSN Premium! http://join.msn.com/?page=features/mlb&pgmarket=en-us/go/onm00200439ave/direct/01/


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to