Hi,
which configure options did you use on php (and did you also run make install)?
After recompiling and installing php you have to enable the module manually in httpd.conf:
1)
Put
LoadModule php4_module pathtomodule/libphp4.so
at the end of the LoadModule block
2)
Put
AddModule mod_php4.c
at the end of the AddModule block
3)
Put the following lines somewhere below the AddModule directive.
AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps
Then restart apache.
Thomas