Switching a users theme with php in drupal

 The following will switch the users theme to pushbutton. You could use this code to change the users theme based on any logic you like.

<?php 
global $user;
user_save($user, array('theme' => 'pushbutton'));
?> 
Your rating: None