This is my array:
$url_parameter = Array ( 'country' => 'USA', 'city' => 'WDC', 'from' => 'Japan' );
I want to covert it so that output is:
country=USA&city=WDC&from=Japan
Is there any easy code to do this task?
This is my array:
$url_parameter = Array ( 'country' => 'USA', 'city' => 'WDC', 'from' => 'Japan' );
I want to covert it so that output is:
country=USA&city=WDC&from=Japan
Is there any easy code to do this task?