How could i sent the $first_name and $last_name variable values without attaching them in the url in the below example
function my_module_my_form_submit($form, &$form_state) {
$first_name = $form_state['values']['first'];
$last_name = $form_state['values']['last'];
drupal_goto("/my_view/".$first_name."/".$last_name);
}
You can use a $_SESSION variable:
then get this values from other page.