Larry Brown <[EMAIL PROTECTED]> wrote: > On if statements, I periodically don't want anything to happen if the > requisite is not met. In most cases just writing the statement in the > format if (this) { do that; } and nothing more will work. However, I > periodically get weird results with this and found the only fix was to do > a... if (this) {do that;}else{"echo "";}
Never have i had a problem with the if (condition) { code; } It has to be some sort of error on your part. > > I try using continue in the else but get errors about using continue on > level 1 or something to that affect. I'm assuming that continue is only > used in loops. correct Curt -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php