gcue Posted June 19, 2008 Posted June 19, 2008 am i writing this right? If $myIP = "10.16" OR "10.17" OR "10.18" OR "10.19" OR "10.20" Then $loc = "SNO" EndIf
Moderators big_daddy Posted June 19, 2008 Moderators Posted June 19, 2008 Few different ways of doing it... Switch $myIP Case "10.16", "10.17", "10.18", "10.19", "10.20" $loc = "SNO" Case Else ; Do something else EndSwitch If $myIP = "10.16" Or $myIP = "10.17" Or $myIP = "10.18" Or $myIP = "10.19" Or $myIP = "10.20" Then $loc = "SNO" EndIf $myIP = Number($myIP) If $myIP >= 10.16 And $myIP <= 10.20 Then $loc = "SNO" EndIf
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