服务器及CGI,SQL的建立  作者:电脑迷侠下载php4
http://www.php.com.cn/uni_file/file_download.php?ID=65
下载mysql
http://go3.163.com/~newhotpoint/download/mysql.zip1,php4 在PWS4.0 for 98 上的安装   将php 解压至 c:\php
   copy php.ini-dist c:\windows\php.ini
   copy php4ts.dll c:\windows\system
   运行 c:\php\sapi\ 中的reg 程序(其中可以修改路径,默认 c:\php)如果没有reg文件可与本人联系[email protected] 。
   打开PWS 高级设定 建立一个cgi-bin 虚拟目录 设成 "执行"
   编个 test.php 放在cgi-bin 中 
       <?
         echo 'test php ok!'
        ?>
   一切顺利通过! 2,php4 在 apache 1.3.9 for 98 的安装
    略
 3. php4 在 IIS5  for win2000上的安装
   将php 解压至 c:\php
   copy php.ini-dist c:\windows\php.ini
   copy php4ts.dll c:\windows\system
   打开 internet 信息服务-属性-主目录-配置-添加-(后缀为.php ,执行文件c:\php\php.exe
   编个程序测试完成。  4 MySQL的安装   默认安装到c:\mysql下
   运行mysqld-shareware.exe文件
   NT下可以输入:mysqld-shareware   --install  启动该服务
   接着,输入mysql ,出现提示符号: mysql> 到此,你已经成功安装了MySQL。
   超级用户:root 密码:空
   建立sql的新用户:mysql -user=root mysql
   grant all privileges on *.* to rxw@localhost Identified by 'password' with grant option;