私が作っているこのサイトがあります。同じフォルダーからphpファイルを含めると機能しますが、
<?php include('/ioanblog/appstore/header.php');?>
動作しないか
<?php include('http://www.domain.co.uk/appstore/header.php');?>
それも機能していません。
ヘッダーが保持しているのはスタイルシートとPiwikコードだけで、ナビゲーションも保持します。
It's hard to say why the include won't work without knowing the folder structure. But you can try it with the absolute path: /home/user/domain/public_html/etc...
try removing the first slash so include('ioanblog/appstore/header.php');
Use <?php include('../../header.php');?>
That's my guess... You don't have an appstore
directory anywhere as far as I can tell.
EDIT: Updated with the correct path... Coming from the libreoffice
directory.