I am trying to iterate through an array of variables, and for each one tack additional information on the end:
Code: Select all
foreach ($VariableArray as $key => $value) {
$value= $value.http_build_query($extra);
}
Can anyone explain this?Warning: http_build_query() [function.http-build-query]: Parameter 1 expected to be Array or Object.
Thanks in advance,
K C