phpファイルがあり、cssリンクタグとjavascriptソースタグを持つ別のphpファイルを含めたいのですが、それらを含めようとすると、ページに追加されません。
私のphpページ:
<?php
$root = $_SERVER['SERVER_NAME'] . '/mysite';
$theme = $root . '/includes/php/common.php';
echo $theme;
include($theme);
?>
common.php:
<link rel='stylesheet' type='text/css' href='../css/main.css'/>";
誰もが何が悪いのか知っていますか?ありがとう