php?????

怎么在LINUX下运行PHP呀!!!
我做了以下动作:
AddModule mod-php.c
LoadModule.php-module modules /libphp.so
Addtype application /x-httpd-php .php
DictoryIndex index.html index.shtml index.php
但是还是不能运行
我的PHP程序如下:
<html>
<head>
<title> php</title>
</head>
<body>
<?php
$sum=1;
for ($i=1;$i<=5;$i++)
$sum*=$i;
echo "sum=".$sum."<br>";
?>
</body>
</html>