Drupal Version 6.
I tried drupal_goto('admin/store/free_subscription', 'status=bye');
and it still did not work.
Below is contents of $_GET:
*Array
(
[q] => admin/store/free_subscription
)*
John
On Thu, Mar 10, 2011 at 12:54 PM, William Smith <[email protected]>wrote:
> You didn't specify which version of Drupal you are using, but assuming
> Drupal 6 - drupal_goto expects $query to be a string, not an array.
>
> So: drupal_goto('admin/store/free_subscription', 'status=bye');
>
> William
>
>
> On Thu, Mar 10, 2011 at 12:46 PM, John Mitchell <[email protected]>wrote:
>
>> When calling drupal_goto I can't seem to successfully pass a querystring
>> along with the url.
>>
>> below is my call to drupal_goto:
>> * $query = array();
>> $query['status'] = 'bye';
>> drupal_goto('admin/store/free_subscription',$query);*
>>
>> Within the called page I output the contents of the $_GET variable using:
>> *dd($_GET);*
>>
>> Below is contents of $_GET:
>> *Array
>> (
>> [q] => admin/store/free_subscription
>> )*
>>
>> Note: it has the *q *parameter but no *status *parameter.
>>
>> Any ideas on what I am doing wrong?
>>
>> Thanks,
>>
>> John
>>
>>
>
--
John J. Mitchell