home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / admin / data_manager.inc < prev    next >
Encoding:
Text File  |  2003-03-03  |  673 b   |  26 lines

  1. <?php
  2. /////////////////////////////////////////////////////////
  3. //    
  4. //    include/data_manager.FS.inc
  5. //
  6. //    (C)Copyright 2003 Ryo Chijiiwa <Ryo@IlohaMail.org>
  7. //
  8. //    This file is part of IlohaMail. IlohaMail is free software released 
  9. //    under the GPL license.  See enclosed file COPYING for details, or 
  10. //    see http://www.fsf.org/copyleft/gpl.html
  11. //
  12. /////////////////////////////////////////////////////////
  13.  
  14. include("../conf/conf.inc");
  15.  
  16. if ($backend=="FS"){
  17.     include("../include/data_manager.FS.inc");
  18.     $DB_TYPE = "FS";
  19. }else{
  20.     include_once("../conf/db_conf.php");
  21.     include_once("../include/idba.$DB_TYPE.inc");
  22.     include_once("../include/data_manager.$DB_TYPE.inc");
  23. }
  24.  
  25.  
  26. ?>