-phpインストール-

   
 httpd.conf  php.ini 設定する

httpd.conf 確認
LoadModule php4_module modules/libphp4.so
AddType application/x-httpd-php .php


php.ini 編集
vi phpinfo.php
-------------------------------
<?
 phpinfo();
?>
--------------------------------
これで テストページは見る事出来たのですが・・・

   

実際に ソースをのせると どうも・・・文字化けする┐( ̄ヘ ̄)┌


スクリプトを保存する文字コード(mbstring.internal_encoding)
ブラウザへ出力する文字コード(mbstring.http_output)
 両方とも・・・シフトJIS
いろいろ、php.iniをいじりまくって・・・最終的にはこれで上手くいってます( ̄∇ ̄)

output_buffering = Off
magic_quotes_gpc = Off
default_charset = Shift_JIS
extension=php_mbstring.dll
mbstring.language = Japanese
mbstring.internal_encoding = SJIS
mbstring.http_input = auto
mbstring.http_output = SJIS
mbstring.encoding_translation = On
mbstring.detect_order = auto
mbstring.substitute_character = none