How use views arguments in PHP Code for Drupal 6

If you need for some reason in your header or footer PHP code use this snipet code

$view = views_get_current_view();
  // [0] is first arg, [1] is second etc.
  $new_var = $view-> args[0];
  echo $new_var;

Enjoy It

enzo

Attribution Noncommercial
This Work, How use views arguments in PHP Code for Drupal 6, by enzo is licensed under a CC BY-NC license.