[PHP] ASP Guy Looking for Select Case equivalent

2001-01-19 Thread Karl J. Stubsjoen
Hello, What is the equivalent command to Select Case as in: Select case 10 + 2 case 10 'nope case 11 'nope case 12 'yep case 13 'yep - but case 12 comes first! end select -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] ASP Guy Looking for Select Case equivalent

2001-01-19 Thread Rasmus Lerdorf
http://php.net/switch On Fri, 19 Jan 2001, Karl J. Stubsjoen wrote: Hello, What is the equivalent command to Select Case as in: Select case 10 + 2 case 10 'nope case 11 'nope case 12 'yep case 13 'yep - but case 12 comes first! end