网瑞科技BLOG[榆林网站建设、软件设计]

64位 win7 为iis7 配置 php 环境

0条评论 0 ℃

 

 

...

windows 7 下快速搭建php环境(windows7+IIS7+php+mysql)

0条评论 0 ℃

 

转贴:http://apps.hi.baidu.com/share/detail/10406992

(1)、采用理由:

优点:最大化的桌面图形化操作系统,可维护性优秀。基于IIS v6.0/v7.0(2008),可以支持的脚本相当完整,不仅支持Linux无法支持的asp/asp.net,还可以安装php、mysql、zend实现php环境。同时,利用Serv-U可以实现ftp管理。操作简单,无需键入任何命令就可实现全能型主机。

...

IIS出现server application error

0条评论 0 ℃

 

The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance. 

...

asp输出Excel设置单元格类型为文本

0条评论 0 ℃

 

<style>
              .xlsText{mso-style-parent:style0;mso-number-format:”\@”;}     /* 设置单元格类型为文本*/
</style>
<%
          response.ContentType=”application/vnd.ms-excel”     ‘设置网页输出类型为:Excel
%>

...

利用php+txt做网站访问统计

0条评论 0 ℃

目录下新建counter.txt

 <?php
 $fp = fopen("counter.txt","r+");
 $counter = fgets($fp,80);
 $counter = doubleval($counter) + 1;
 fseek ($fp,0);
 fputs($fp,$counter);
 fclose($fp);
 ?>
<?= $counter ?> 

...