i am currenty learning how to use rest api for mobile dev't, i just want to know is there a method for accepting multiple variables in the URL?
for example:
$app->get('/chara/arena/:id', 'getArea');
//now this code above can accept only 1 prameter now how do i make it to accept 2 parameters?
like:
/chara/arena?idA=102&idB=123
im using SLIM framework btw.