Jump to content

Jessica

Staff Alumni
  • Posts

    8,968
  • Joined

  • Last visited

  • Days Won

    41

Posts posted by Jessica


  1. $par = isset($_GET['par'])?$_GET['par'] : '';
    switch ($par) {

    case 0:
    case 1:
    case 2:
    echo 'par 0-2';
    echo '<br/> PAR: '.$par;
    break;
    case 3:
    case 4:
    case 5:
    echo 'par 3-5';
    echo '<br/> PAR: '.$par;
    break;
    default:
    echo 'par >=6';
    echo '<br/> PAR: '.$par;

    }
    What do you get for that?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.