No it doesn't
AddType application/x-httpd-php3 .php3
first: can't load php3 and php4. One of the two.
delete this lines:
LoadModule php_module modules/mod_php.so
LoadModule php3_module modules/libphp3.so
AddModule mod_php.c
AddModule mod_php3.c
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php3-source .phps
AddType application/x-httpd-php .phtml
Second: only this one is valid:
AddType application/x-httpd-php .php4 .php3 .phtml .php
Try to separate them in multi lines like
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
etc etc