#tar zxpf apache_1.3.33.tar.Z
#tar zxpf php-4.3.10RC2.tar.gz
#cd apache_1.3.33
#./configure --prefix=/usr/local/apache
#cd ../php-4.3.10RC2
#./configure --with-apache=../apache_1.3.33 --with-mysql=/usr/local/mysql
#make
#make install
#cd ../apache_1.3.33
#./configure --prefix=/usr/local/apache --activate-module=src/modules/php4/libphp4.a
#make
#make install
#vi /etc/rc.d/rc.local
add a line: /usr/local/apache/bin/apachectl start
#touch /usr/local/apache/htdocs/testphp.php
add contents (vi):
this is a test.
in a Browser, test the address: http://localhost/testphp.php