TXT
Reply to comment
How use views arguments in PHP Code for Drupal 6
Submitted by enzo on Sat, 04/10/2010 - 17:44If 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

