CSS ファイルがあり、そのファイル内のいくつかの画像パスを PHP 変数形式で参照したいと考えています。次に、その css ファイルを html ファイル内で参照します。以下は私のファイルです
CSSファイル
<? header ("Content-type: text/css");?>
body{ margin:0px; font:9px/11px "Tahoma", Arial, Helvetica, sans-serif; color:#010000;
background:#f3f6e1 url(<?php echo base_url().'public/';?>images/body_bg_1.gif) repeat-x 0 0}
HTMLファイル
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="css/layout.css" media="screen">
</head>
他のもの。これを行う方法を説明してもらえますか?