OLD | NEW |
---|---|
1 <?php | 1 <?php |
2 header("Access-Control-Allow-Origin: *"); | 2 header("Access-Control-Allow-Origin: *"); |
3 | 3 |
4 $name = 'green-background.css'; | 4 $name = 'green-background-import-anonymous.css'; |
5 $fp = fopen($name, 'rb'); | 5 $fp = fopen($name, 'rb'); |
6 header("Content-Type: text/css"); | 6 header("Content-Type: text/css"); |
7 header("Content-Length: " . filesize($name)); | 7 header("Content-Length: " . filesize($name)); |
8 | 8 |
9 fpassthru($fp); | 9 fpassthru($fp); |
10 exit; | 10 exit; |
11 ?> | 11 ?> |
OLD | NEW |