s.y. sample

メモ

html memo-html内でphpを動かす方法-

xampp ローカル開発環境下だと、
「httpd.conf」内一番最後の行に

AddHandler application/x-httpd-php .php .html

を記載。

または、htdocs内に

AddType application/x-httpd-php .php .html .htm
AddHandler application/x-httpd-php .php .html .htm

php_flag allow_url_fopen on
php_flag allow_url_include on

全部入れタイプ(1行目、2行目のどちらかのでもいける?)

で動く。

html内のphpインクルード記述は

<?php include( dirname(FILE) . ‘./header.php’); ?>