In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > I am using a <form> to enter data into a mySQL database all is fine but, I > need to check for blank entries in rows. I was trying to use isset($var) > but it appears to return a TRUE whether or not I insert data on the form.
isset is true if the var has been set, whether it contains values or not. Try empty which is true if the var has no value. -- David Robley Temporary Kiwi! Quod subigo farinam -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php