I know that we can assign a theme named page-name.tpl.php
to a page called /page/ with the use of the theme engine.
How can i assign a theme to a template programmatically in drupal ?
I know that we can assign a theme named page-name.tpl.php
to a page called /page/ with the use of the theme engine.
How can i assign a theme to a template programmatically in drupal ?
You can use the global $custom_theme
variable to change the theme.
http://api.drupal.org/api/drupal/developer--globals.php/global/custom_theme/6
global $custom_theme;
$custom_theme = 'garland';
Maybe you can use Sections module?
c/p from project page: