hi..
i have a combobox that has members from a mysql database loaded into it..
one of the choices is "select a member to edit" and has a value of "". now
if a person selects "select a member to edit", then an error message shows
up saying they need to select a member to edit and puts them back to the
main menu with a link.. now if they really do pick a member to edit i want
the form to show up.. what i need to know is how do you break/drop out of an
if statement..:
//mysqlstatements here
if(!empty($EditMember)){
//need to skip this or break out of it
}else{
//error section
}
or should i do:
if(empty($EditMember)){
//error message
e}else{
//the form}



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.443 / Virus Database: 248 - Release Date: 1/10/2003


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

Reply via email to