index_head.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. require_once '../path.php';
  3. require_once '../ucenter/login.php';
  4. require_once '../public/config.php';
  5. require_once '../public/load_lang.php';
  6. ?>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <link type="text/css" rel="stylesheet" href="../studio/css/style.css"/>
  13. <link type="text/css" rel="stylesheet" href="../studio/css/color_day.css" id="colorchange" />
  14. <title id="page_title"><?php echo $_local->gui->pcd_studio; ?></title>
  15. <script src="../studio/js/common.js"></script>
  16. <script src="../public/js/jquery.js"></script>
  17. <script src="../studio/js/fixedsticky.js"></script>
  18. <link type="text/css" rel="stylesheet" href="../public/css/notify.css"/>
  19. <script src="../public/js/notify.js"></script>
  20. <script src="../public/js/comm.js"></script>
  21. <script type="text/javascript">
  22. <?php require_once '../public/load_lang_js.php';//加载js语言包?>
  23. var g_language="en";
  24. function menuLangrage(obj){
  25. g_language=obj.value;
  26. setCookie('language',g_language,365);
  27. window.location.assign("index.php?language="+g_language);
  28. }
  29. </script>
  30. </head>