$hoge['A']='aaa';
$hoge['B']='ccc';
$hoge['C']='ggg';
$result = "";

foreach ($hoge as $key => $val) {
$result .= $key . "=" . $val . "&";
}