0573c70d8602d961e53f714ea77bd87c.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php if (!defined('THINK_PATH')) exit();?><!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
  2. <html>
  3. <head>
  4. <title>方维互动直播 -- 安装向导</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <link rel="stylesheet" type="text/css" href="__TMPL__Public/css/style.css" />
  7. </head>
  8. <body>
  9. <div class="install block">
  10. <form name="install" action="<?php echo u('Index/index');?>" method="POST" >
  11. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  12. <tr>
  13. <td colspan="2" style="height:10px;">
  14. </td>
  15. </tr>
  16. <?php if(is_array($result)): foreach($result as $key=>$rs): ?><?php if($key != 'status'): ?><tr>
  17. <?php if($key == 'msg' or $key == 'php_env' or $key == 'gd_info' or $key == 'mb_info' or $key == 'exif_info'): ?><td>
  18. <?php if($key == 'msg'): ?>检测结果:<?php endif; ?>
  19. <?php if($key == 'php_env'): ?>PHP 环境:<?php endif; ?>
  20. <?php if($key == 'gd_info'): ?>GD函数库:<?php endif; ?>
  21. <?php if($key == 'exif_info'): ?>EXIF函数库:<?php endif; ?>
  22. <?php if($key == 'mb_info'): ?>MBSTRING函数库:<?php endif; ?>
  23. </td>
  24. <td>
  25. <?php echo ($rs); ?>
  26. </td>
  27. <?php else: ?>
  28. <td>
  29. <?php if($rs["file_type"] == 'dir' ): ?>目录
  30. <?php else: ?>
  31. 文件<?php endif; ?><?php echo ($key); ?>:
  32. </td>
  33. <td>
  34. <?php echo ($rs["msg"]); ?>
  35. </td><?php endif; ?>
  36. </tr><?php endif; ?><?php endforeach; endif; ?>
  37. <tr>
  38. <td style="height:50px;"></td>
  39. <td>
  40. <?php if($result['status'] == 1): ?><input type="button" value="继续安装" onclick="location.href='<?php echo u('Index/database');?>'" /><?php endif; ?>
  41. </td>
  42. </tr>
  43. <tr>
  44. <td colspan="2" style="text-align: center;">
  45. 方维互动直播安装程序
  46. </td>
  47. </tr>
  48. </table>
  49. </form>
  50. </div>
  51. </body>
  52. </html>