Need to Access Views Argument From the Footer or Header of the View?
The following snippet will give it to you.
<?php
$view=views_get_current_view();
$arg1=$view->args[0];
print $arg1;
?>The following snippet will give it to you.
<?php
$view=views_get_current_view();
$arg1=$view->args[0];
print $arg1;
?>