php - How to separate value $_GET -


i have problem getting 1 value. i'm calling script with:

xxx.php?action=activate&timestamp=1415550311&gate=smscz&pricing=czchest1 &sum=29.00&currency=czk&days=0&identifiers%5bglobal%5d%5btext%5d=nomiscz&key=czchest1`  $action = $_get['action']; $pricing = $_get['pricing']; 

etc.

but have problem getting value &identifiers. need only value nomiscz this &identifiers%5bglobal%5d%5btext%5d=nomiscz.

what have in request, url decoded

identifiers[global][text]=nomiscz&key=czchest1 

to access nomiscz use this

$_get['identifiers']['global']['text']; 

Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -