当前位置:首页 > PHP源码 > 列表

PHP安装文件小程序

发布:smiling 来源: PHP粉丝网  添加日期:2013-11-16 22:33:16 浏览: 评论:0 

在我们下载到的php或者asp的源码中,经常会看到 install.php 或者 install 目录,通过这个文件或者目录就可以将源码程序进行安装,这就是安装文件了。

关于安装文件的制作原理很简单:

1,首先是界面文件,其大概就是一个表单了,通常让我们填写mysql的配置信息,比如主机,用户名,密码,数据库名等。

2,而程序的执行文件是要建立一个 config.php 的配置文件,这个文件是通过php文件操作函数来建立的,首先检查建立路径的可写权限,如果有权限则按照一定规则进行新建,将我们在界面文件填写的配置信息建立到config.php中,可以完成config.php的建立。

3,关于数据库文件的制作:我们知道 mysql 数据库都可以通过其命令面板来建立,也就是 sql 语法来建立完成,其实php本身就是开源的项目,通过 sql 语句来建立数据库非常方便,这里我们把建立数据库,建立数据库,以及字段等都通过 sql 在 .php 文件里进行执行,即可以完成数据库的建立。

下面是一个由phpfensi.com完善及美化的一个通用php安装文件小程序,结构很简单,源码不是很多,就不打包下载了。
 

  1. <html xmlns="http://www.w3.org/1999/xhtml">     
  2. <head>     
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />     
  4. <link href="style.css" rel="stylesheet" type="text/css" />     
  5. <title>夏日通用PHP安装文件小程序</title>     
  6. <style type="text/css">     
  7. /*全局样式*/    
  8. body { font-family: "宋体"; font-size: 12pt; color: #333333; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;}      
  9. table{ font-family: "宋体"; font-size: 9pt; line-height: 20px; color: #333333}     
  10. a:link { font-size: 9pt; color: #333333; text-decoration: none}      
  11. a:visited { font-size: 9pt; color: #333333; text-decoration: none}      
  12. a:hover { font-size: 9pt; color: #E7005C; text-decoration: underline}      
  13. a:active { font-size: 9pt; color: #333333; text-decoration: none}      
  14. /*全局样式结束*/    
  15. .style1 {color: #FF0000}     
  16. </style>     
  17. </head>     
  18. <body>     
  19. <?php      
  20. $files="data/config.php";      
  21. if(!is_writable($files)){     
  22. echo "<table width='365' border='0' align='center' cellpadding='5' cellspacing='1' bgcolor='#C2C2C2'><tr>    
  23.         <th width='100%' bgcolor='#FFFFCC'>一,<font color=red>数据库配置文件不可写,不能完成安装!!!</font></th>    
  24.       </tr>    
  25.     </table><table width='365' border='0' align='center' cellpadding='0' cellspacing='0'><tr>    
  26.         <th hight=4></th>    
  27.       </tr>    
  28.     </table>";      
  29. }else{      
  30. echo "<table width='365' border='0' align='center' cellpadding='5' cellspacing='1' bgcolor='#C2C2C2'><tr>    
  31.         <th width='100%' bgcolor='#FFFFCC'>一,数据库配置文件权限正确</th>    
  32.       </tr>    
  33.     </table><table width='365' border='0' align='center' cellpadding='0' cellspacing='0'><tr>    
  34.         <th hight=4></th>    
  35.       </tr>    
  36.     </table>";      
  37. }      
  38. if(isset($_POST[install])){      
  39. $config_str = "<?php";      
  40. $config_str .= "\n";      
  41. $config_str .= '$mysql_host = "' . $_POST[db_host] . '";';      
  42. $config_str .= "\n";      
  43. $config_str .= '$mysql_user = "' . $_POST[db_user] . '";';      
  44. $config_str .= "\n";      
  45. $config_str .= '$mysql_pass = "' . $_POST[db_pass] . '";';      
  46. $config_str .= "\n";      
  47. $config_str .= '$mysql_dbname = "' . $_POST[db_dbname] . '";';      
  48. $config_str .= "\n";      
  49. $config_str .= '$mysql_tag = "' . $_POST[db_tag] . '";';      
  50. $config_str .= "\n";      
  51. $config_str .= '?>';      
  52. $ff = fopen($files"w+");      
  53. fwrite($ff$config_str);      
  54. //=====================      
  55. include_once ("data/config.php"); //嵌入配置文件      
  56. if (!@$link = mysql_connect($mysql_host$mysql_user$mysql_pass)) { //检查数据库连接情况      
  57. echo "<table width='365' border='0' align='center' cellpadding='5' cellspacing='1' bgcolor='#C2C2C2'><tr>    
  58.         <th width='100%' bgcolor='#FFFFCC'><font color='red'>二,数据库连接失败!请检查连接参数</font> <a href=install.php>返回修改</a></th>    
  59.       </tr>    
  60.     </table><table width='365' border='0' align='center' cellpadding='0' cellspacing='0'><tr>    
  61.         <th hight=4></th>    
  62.       </tr>    
  63.     </table>";      
  64. }else{      
  65. mysql_query("Create DATABASE `$mysql_dbname`");      
  66. mysql_select_db($mysql_dbname);      
  67. mysql_query("SET NAMES 'gb2312'");     
  68. $sql_query[] = "Create TABLE `contents` (    
  69.   `Id` int(10) NOT NULL auto_increment,    
  70.   `Title` int(10) default NULL,    
  71.   `Contents` text,    
  72.   `Author` varchar(50) default NULL,    
  73.   `Times` int(10) default NULL,    
  74.   `UpdateDate` datetime default NULL,    
  75.   PRIMARY KEY  (`Id`)    
  76. ) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=gb2312;";      
  77.     
  78. $sql_query[] = "Create TABLE `title` (    
  79.   `Id` int(10) NOT NULL auto_increment,    
  80.   `Title` varchar(50) default NULL,    
  81.   PRIMARY KEY  (`Id`)    
  82. ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=gb2312;";      
  83.     
  84. foreach($sql_query as $val){      
  85. mysql_query($val);      
  86. }      
  87. $sql_query2[] = "Insert INTO contents VALUES ('1', '1', '添加内容测试。', 'PHP程序员', null, null);";     
  88. $sql_query2[] = "Insert INTO contents VALUES ('2', '1', '简单的一款PHP+MYSQL增删改查程序。', 'PHP程序员', null, null);";     
  89. $sql_query2[] = "Insert INTO contents VALUES ('5', '1', 'html5的新增的标签和废除的标签简要概述.', 'PHP程序员', null, null);";     
  90. $sql_query2[] = "Insert INTO contents VALUES ('4', '1', '简单的内容管理系统CMS', 'PHP程序员', null, null;";     
  91. $sql_query2[] = "Insert INTO contents VALUES ('6', '1', 'HTML中fieldset标签概述及使用方法。', 'PHP程序员', null, null);";     
  92. $sql_query2[] = "Insert INTO contents VALUES ('7', '1', '简单的增删改查程序,适合刚入门的新手参照。', 'PHP程序员', null, null);";     
  93. $sql_query2[] = "Insert INTO contents VALUES ('8', '1', '编程如何进行入门。', 'PHP程序员', null, null);";     
  94. $sql_query2[] = "Insert INTO contents VALUES ('9', '1', 'PHP实例入门小程序。', 'PHP程序员', null, null);";     
  95. $sql_query2[] = "Insert INTO contents VALUES ('10', '1', 'PHP超简单的源码小程序。', 'PHP程序员', null, null);";     
  96. $sql_query2[] = "Insert INTO contents VALUES ('11', '1', '可进行收藏的代码文档。', 'PHP程序员', null, null);";     
  97. $sql_query2[] = "Insert INTO contents VALUES ('12', '1', '每页显示十条新闻,可更改pagesize值。', 'PHP程序员', null, null);";     
  98. $sql_query2[] = "Insert INTO contents VALUES ('13', '1', '如何利用工具导入.SQL文件数据库。', 'PHP程序员', null, null);";     
  99. $sql_query2[] = "Insert INTO contents VALUES ('14', '2', '脚本专栏的内容。', 'smiling', null, null);";     
  100.     
  101. $sql_query2[] = "Insert INTO title VALUES ('1', '网页制作');";     
  102. $sql_query2[] = "Insert INTO title VALUES ('2', '脚本专栏');";     
  103. $sql_query2[] = "Insert INTO title VALUES ('3', '网络编程');";     
  104. $sql_query2[] = "Insert INTO title VALUES ('4', '脚本下载');";     
  105. $sql_query2[] = "Insert INTO title VALUES ('5', 'CMS教程');";     
  106. $sql_query2[] = "Insert INTO title VALUES ('6', '电子书籍');";     
  107. $sql_query2[] = "Insert INTO title VALUES ('7', '平面设计');";     
  108. $sql_query2[] = "Insert INTO title VALUES ('8', '媒体动画');";     
  109. $sql_query2[] = "Insert INTO title VALUES ('9', '操作系统');";     
  110. $sql_query2[] = "Insert INTO title VALUES ('10', '网站运营');";     
  111. $sql_query2[] = "Insert INTO title VALUES ('11', '网络安全');";     
  112. $sql_query2[] = "Insert INTO title VALUES ('12', '业界资讯');";     
  113. $sql_query2[] = "Insert INTO title VALUES ('13', '开发资料');";     
  114. $sql_query2[] = "Insert INTO title VALUES ('14', '相关下载');";     
  115. $sql_query2[] = "Insert INTO title VALUES ('15', '视频教程');";     
  116. $sql_query2[] = "Insert INTO title VALUES ('16', '项目供求');";     
  117. $sql_query2[] = "Insert INTO title VALUES ('17', '资源共享');";     
  118. $sql_query2[] = "Insert INTO title VALUES ('18', '常用工具');";     
  119.     
  120. foreach($sql_query2 as $val2){      
  121. mysql_query($val2);      
  122. }      
  123. echo "<script>alert('安装成功!');location.href='index.php'</script>";      
  124. rename("install.php","install.lock");      
  125. }      
  126. }      
  127. ?>      
  128. <table width="100%" border="0" cellspacing="0" cellpadding="0">     
  129.   <tr>     
  130.     <td align="center"><form action="" method="POST">     
  131.  <table width="365" border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#C2C2C2">     
  132. <tr>     
  133.  <th colspan="3" bgcolor="#FFFFCC">程序安装文件</th>     
  134.  </tr>     
  135.     
  136.  <tr>     
  137.    <td width="63" bgcolor="#FFFFFF">填写主机:</td>     
  138.    <td width="279" colspan="2" bgcolor="#FFFFFF"><input type="text" name="db_host" value=""/></td>     
  139.    </tr>     
  140.  <tr>     
  141.    <td bgcolor="#FFFFFF">用 户 名:</td>     
  142.    <td colspan="2" bgcolor="#FFFFFF"><input type="text" name="db_user" value="root"/></td>     
  143.    </tr>     
  144.  <tr>     
  145.    <td bgcolor="#FFFFFF">密  码:</td>     
  146.    <td colspan="2" bgcolor="#FFFFFF"><input type="text" name="db_pass" value=""/></td>     
  147.    </tr>     
  148.  <tr>     
  149.    <td bgcolor="#FFFFFF">数据库名:</td>     
  150.    <td colspan="2" bgcolor="#FFFFFF"><input type="text" name="db_dbname" value="joke"/>     
  151.      <span class="style1">   不要重名否则会覆盖 </span></td>     
  152.    </tr>     
  153.  <tr>     
  154.   <td colspan="3" bgcolor="#FFFFFF"><button type=submit name=install>下一步</button></td>     
  155.   </tr>     
  156. </table>     
  157.     </form></td>     
  158.   </tr>     
  159. </table>      
  160. </body>     
  161. </html> 

Tags: PHP 安装 文件

分享到: