UltraEdit支持php文档特殊显示的配置(基本的)
在Linux下访问MSSQLServer数据库(转载)
给WIN98下使用APACHE的弟兄们的一个好东西:ApacheManager,不会再有那个DOS窗口了!
关于在FreeBSD上安装GD库的问题解决。(兼回西狂兄)
转贴:开发大型PHP项目的方法(一)
转贴:开发大型PHP项目的方法(五)
一个好用的UBB类!
回复:关于PHP聊天室的讨论
一个简单的图形计数器,需要MYSQL,GD的支持,LINUX下PHP4RC1通过
土特产:PHP4.0RC2-Win32安装指南(中文版) 
页面导航:
正文内容:
compiling php with crypt()
author:
daniel beulshausen
updated:
14.10.2000
this quick tutorial shall help you to compile php with support for the crypt() function, because its not correct that if you use windows you cant use crypt().
it is however correct that libcrypt isnt available by default on windows, but you can use the libary from our download section.
extract the zip and move crypt.h to your include folder, and the needed libary (release or debug) to your libary folder (tools -> options -> folders).
load the php workspace, and add crypt.c (can be found in ext/standard/) to the php4dllts group (you can put crypt.c to function modules -> source files).
now edit the link options of the php4dllts project, and add libcrypt to the link libaries, note that we compiled a release and a debug libary, please use only release for the release builds, and the debug libary for debug builds!
now edit config.w32.h (located in main/), edit it and change the needed defines:
#define have_crypt 1
#define have_crypt_h 1
this should do the trick, and itll build you php with the crypt() function.