I spent some time searching for a good php select case / switch example, but the one I found doesn't seem to work... Maybe I can get a better example since it's about 20 or so cases total, and I don't want to do that on if/elses

I've taken out other things inside of them for sanity.
PHP Code:
switch ($magic) {
case 0 to $chance_for_normal:
$special = 0;
break;
case $endchance to 20: //must be set lower if normal chance is reduced.
$special = 1;
break;
case 21 to 25:
$special = 3;
break;
etc.....
etc.....
Seems to just give me errors. Am I doing it wrong?