Recent blog posts
- My Blog now supports creative commons license
- Custom version for MultiSite Search Module
- Drupal: How to Enable Active Trail with Nice Menus
- DrupalCamp CA / Guatemala 2010
- Content Profile Form inside User Edit for Drupal 6
- How use views arguments in PHP Code for Drupal 6
- Drupal Contribution: Generate vancode using mysql alone
- Drupal Module Patch: Belated PNG
- Drupal Patch to Notify Module to process only new content
- Notify module: Handle both published and unpublished entries
How use views arguments in PHP Code for Drupal 6
Submitted by enzo on Sat, 04/10/2010 - 17:44
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

