I have these urls from a web log:
http://www.domain.com/page?s=194&client=151678&m=a4a&v=1&g=54
http://www.domain.com/page?s=51&client=617171&m=b4z&v=8&g=97
How can I convert this URL in an array in PHPso i will have an array like this
array(
'page' => array(
's' => 194,
'client' => 151678
'm' => 'a4a',
'v' => 1,
'g' => 54
)
etc..
)
then later I can loop to that array to find duplicates or validate the information correctly.