<?php
header("Content-Type: text/html; charset=utf-8"); // Кодировка
error_reporting(E_ALL); // Уровень ошибок
ob_start(); // Буферизация
include './skins/tpl/cap.tpl';
$content = ob_get_clean();
echo $content;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html>
<head>
<link type='text/css' rel='stylesheet' href='./skins/css/style.css'>
<link rel='shortcut icon' type='image/x-icon' href='../favicon.ico'/>
<title>Мой сайт!</title>
</head>
<body>
<div class="header">Мой сайт!</div>
.header {
color : #000;
line-height : 30px;
background-color : #005c04;
background-image : url(skins/img/header.gif);
background-repeat : no-repeat;
text-align : center;
height : 34px;
}
Картинка не отображается , скажите почему? Путь указал правильно!