I had a similar problem with PHP5 and IIS. I had to copy the php_mysql.dll 
to my c:\winnt folder (and/or c:\php\ -- it didn't like the ext folder). I 
assume you have enabled it in your php.ini?try to put a copy of "libmysql.dll" in windows/system32 folder...I did both of these suggestions and it still doesn't work. I also It works 
fine in php4 but not php5.
- I had a similar problem with PHP5 and IIS. I had to copy the php_mysql.dll
to my c:\winnt folder (and/or c:\php\ -- it didn't like the ext folder). I
assume you have enabled it in your php.ini?
- try to put a copy of "libmysql.dll" in windows/system32 folder...Thanks for your help. I think I'll just stick with php4. - 
meployhar [at] hotmail.com
在国外网站找到这个
看来只能使用php4了郁闷

解决方案 »

  1.   

    你把GD库打开,如果phpinfo(); 能显示 GD什么的(那个表啦)就是目录没错,如果不能显示GD就就是那个DIR目录错了. 把="./" 改成绝对路径试试.
    如果目录对的话,照你的设置,把IIS或APACHE重新启动,不是重启机器是重启此服务
      

  2.   

    上面的两位兄弟 你们说的方法都不行
    不知道是不是php5的bug不
    真的有点麻烦
    我已经重新使用php4.0配置了
    已经成功了
    谢谢
      

  3.   

    我一向推荐初学者使用PHP4进行环境配置:)
      

  4.   

    if ($action == "install"){
          echo "nihao";
    }
    else {
    ?>
        <td height="107"> 
          <div align="center"><a href="install.php?action=install">test</a></div>
        </td>
    <?
    }
    ?>我是用localhost/install.php?action=install连接
    为什么怎么也不回运行到      echo "nihao";  啊
    什么原因啊?
      

  5.   

    已经搞定了
    原来是register_globals没有打开
      

  6.   

    /* 弹出变量 */
    if (!ini_get("register_globals")) {
    extract( $_POST ,EXTR_SKIP);
    extract( $_GET ,EXTR_SKIP);
    }自己去查下这几个函数。