<?php
 
// rename this file to Example.php for can try it with  given .httaccess
 
    include 'D3Css.php';
 
 
    header("Content-Type: text/plain");
 
    $css = new D3Css(preg_replace('/[^A-Z0-9_\-\.]/i','',$_GET['file']) . '.css',true,'.');
 
    $css->compressed=false;  // this will also be disabled for cached output.
 
    echo $css;
 
?>
 
 |