I have array like this one.
$fields = array(
'user[facebook_gender]' => urlencode("female"),
'user[facebook_likes]' => array(1,2,3,4,5,6)
);
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
$fields_string=rtrim($fields_string, '&');
then I get
user[facebook_gender]=female&user[facebook_likes]=Array
It just show "Array", however I want to show the content of Array,
arrayinto a string? How to create a url from anarray?