Re: [PHP] switch with multiple case

2001-03-14 Thread Yasuo Ohgaki
> In ASP, you can have something like: > > > <% > select case something > case "this" do that > case "those","them" do other > case "crap","doesn't matter","whatever" do nothing > case else print error > end select > %> > > > IN PHP you can't do cases like that, because like in C, u must have

RE: [PHP] switch with multiple case

2001-03-14 Thread Matt Williams
switch($something) { case "this": do this; break; case "those": case "them": do other; break; case "crap": case "doesn't matter": case "whatever": do nothing; break; default: print error; } > > <% > select case something

Re: [PHP] switch with multiple case

2001-03-14 Thread Phil Driscoll
Same as C switch($something) { case "this": do that;break; case "those":case "them": do other; break ... default: print error } Cheers -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP General Mailing List (http://www.php.net