I wonder how can I insert an html document into another one using php. E.g.:
header.html
<div id="header">Hey this is header</div>
index.php
<body>
<? get_document('header.html'); ?>
...
I could use ajax for that but I dont want my web site to depend on js. Thank you!