Risposte:
Per Drupal 6,
Dovrebbe essere il 3o parametro
drupal_goto($path = '', $query = NULL, $fragment = NULL, $http_response_code = 302)
drupal_goto("products", NULL, $node->nid);
Per Drupal 7
drupal_goto($path = '', array $options = array(), $http_response_code = 302)
drupal_goto("products", array('fragment' => $node->nid));
In Drupal 6 drupal_goto usa il suo terzo parametro per la frammentazione. Se vuoi rendere l'URL simile ai prodotti # 345 dovresti passare il suo frammento come terzo argomento nella funzione drupal_goto.
drupal_goto("products", NULL, $node->nid); // where $node->nid is the fragment.
In Drupal 7 dovresti passare il frammento come coppia chiave-valore dell'array sul secondo parametro della funzione drupal_goto.
drupal_goto('products', array('fragment' => $node->nid)) ; // where $node->nid is the fragment.
Entrambi sopra produrranno un url come i prodotti # 123, dove 123 è il valore della variabile $ node-> nid.
drupal_goto perde #zzz se c'è un? destination = foobar # zzz, dato che questo non è mai restituito da $ _SERVER, rimuovi questa riga perché non fa nulla a parte rompere le cose:
//$options['fragment'] = $destination['fragment']; // removed
is the same as
$options['fragment']='';