2
我試圖用drupal_goto功能,但它被重定向到錯誤的URL如何使用drupal_goto發送變量使用Drupal 7
這裏是我的代碼
$dis='user/' . $account->uid . '/edit/?id=6356928';
drupal_goto($dis);
與ID
問題有什麼建議麼 ??
我試圖用drupal_goto功能,但它被重定向到錯誤的URL如何使用drupal_goto發送變量使用Drupal 7
這裏是我的代碼
$dis='user/' . $account->uid . '/edit/?id=6356928';
drupal_goto($dis);
與ID
問題有什麼建議麼 ??
drupal_goto使用與url()相同的$options
設置。
嘗試做以下
drupal_goto("user/" . $account->uid . "/edit", array(
'query' => array(
'id' => '6356928',
),
));