[PHP] Equivalent of the Basic function SELECT...CASE

2001-12-06 Thread Robin McKenzie
Could anyone tell me if there is a PHP equivalent to: SELECT x CASE 1 to 5 {...} CASE ELSE {...} END SELECT Muchos gracias. Robin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] Equivalent of the Basic function SELECT...CASE

2001-12-06 Thread jimtronic
switch {} will do it. http://www.php.net/manual/en/control-structures.switch.php Could anyone tell me if there is a PHP equivalent to: SELECT x CASE 1 to 5 {...} CASE ELSE {...} END SELECT Muchos gracias. Robin -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Equivalent of the Basic function SELECT...CASE

2001-12-06 Thread py
switch( $x ){ case 1: case 2: case 3: case 4: case 5: {...} break; default: {...} break; } py At 05:38 PM 12/6/01 +, Robin McKenzie wrote: Could anyone tell me if there is a PHP equivalent to: SELECT x CASE 1 to 5 {...} CASE ELSE