fastix: funktioniert php und css zusammen

Beitrag lesen

Auch ein Vorschlag:
datei_x.php:

<html>
<head>
<!-- Pla -->

<? include("./css.inc") ?>

<!-- Laber -->
</head>
<body>

<!-- ...   -->

</body>
</html>

css.inc:

<style type="text/css">
h1 { font: arial bold 18px }
<style>

Da die Datei von PHP mit einfeügt wird, kannst Du eine zentrale benutzen und der Browser muss sie nicht extra abholen...

fastix