php - How to separate value $_GET -
i have problem getting 1 value. i'm calling script with:
xxx.php?action=activate×tamp=1415550311&gate=smscz&pricing=czchest1 &sum=29.00¤cy=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
Post a Comment