AntiVirusGuy Posted November 15, 2005 Posted November 15, 2005 if $button2 = (80) & $button3 = (80) & $button4 = (80) & $button5 = (80) & $button6 = (80) Then I have tried ot with and with out quotes how do I specify multiple if statements
Valuater Posted November 15, 2005 Posted November 15, 2005 if $button2 = (80) & $button3 = (80) & $button4 = (80) & $button5 = (80) & $button6 = (80) ThenI have tried ot with and with out quotes how do I specify multiple if statementsthe answer would actually beif $button2 = (80) And $button3 = (80) And $button4 = (80) And $button5 = (80) And $button6 = (80) Thenhowever, i think i answered your TRUE question in your other post8)nice try... really
NegativeNrG Posted November 16, 2005 Posted November 16, 2005 (edited) you can also use: if $button2 = (80) then if $button3 = (80) then if $button4 = (80) Then if $button5 = (80) Then if $button6 = (80) Then <code here> endif endif endif endif endif this is more of a longer version. Edited November 16, 2005 by NegativeNrG [size=20]My File Upload[/size]Register at my site and upload.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now