> Unfortunately, anytime I do this instead of getting an HTML > page I get the PHP code showing up on screen. > > Anyone have any ideas? The reason you are probably getting this is because you have the following in your httpd.conf <IfDefine SSL> AddModule mod_ssl.c AddModule mod_php4.c </IfDefine> You need to take the "AddModule mod_php4.c" line and put that outside of the <IfDefine SSL> block. Amith