I am trying to use drupal_goto function but it is redirect to wrong URL
here is my code
$dis='user/' . $account->uid . '/edit/?id=6356928';
drupal_goto($dis);
the problem with the ID
any suggestions ??
drupal_goto uses the same $options settings as url().
Try to do the following
drupal_goto("user/" . $account->uid . "/edit", array(
'query' => array(
'id' => '6356928',
),
));