Lol sorry... I put the wrong SQL ver.. I have 3.23.56, well anyways I fixed my problem.. For everyone out there with the problem this is what I did..
rpm -e httpd
rpm -e php
Well.. rpm -e everything that has to do with httpd and php... Then I downloaded httpd-2.0.47.tar and php-4.3.3.tar and installed them and everything was running smooth... So here is the link where i got the info from
http://www.php.net/manual/en/install.apache2.php
Now one more thing... In that link they say to edit your httpd.conf.. in the old apache this file was in /etc/httpd/conf directory.. SO when I was doing locate httpd.conf.. That was the location I was getting which is wrong.. The location for that file in apache 2.0.47 is /usr/local/apache2/conf
Ok after you follow all the instruccion in the php.net manual all you have to do for php to work is paste this line in the httpd.conf
AddType application/x-httpd-php .php .phtml
The part about the
LoadModule php4_module libexec/libphp4.so
Was already in the httpd.conf so you do not have to do this.. Well make sure is in there

Bye.. Now I have to figured out some other things..