djfox Posted November 3, 2007 Share Posted November 3, 2007 I notice that if you do more than two ifs and one else, the coding breaks. Is there an alternative? I want to do something like: if this { do that } if not this, if that { do this instead } if not that, if whatever { do stuff } etc etc. But doing else if more than once doesn`t do the job. Quote Link to comment Share on other sites More sharing options...
Orio Posted November 3, 2007 Share Posted November 3, 2007 if(){ ... } elseif(){ ... } elseif(){ ... } ... else{ ... } More info here. Orio. Quote Link to comment Share on other sites More sharing options...
djfox Posted November 3, 2007 Author Share Posted November 3, 2007 Oh ok, it might have just been the way I had them set up. Thanks! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.