process_form.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. $canidate_obj = new User_Theme();
  3. $canidate_obj->user_id        = $user_obj->user_id;
  4. $canidate_obj->theme_name     = $user_theme;
  5. $ret_vals = $user_theme_db->Get( $user_obj->user_id );
  6. if ( $ret_vals[ 0 ] == 1 ) {
  7.    $user_theme_db->Modify( $canidate_obj );
  8. } else {
  9.    $user_theme_db->Add( $canidate_obj );
  10. }
  11. $user_theme_obj = $canidate_obj;
  12. include( './themes/' . $user_theme_obj->theme_name . '/main.inc' );
  13. include( './themes/common/main.inc' );
  14. include( './prometheus/templates/theme/main.inc' );
  15. ?>