1
0
mirror of https://github.com/php/web-php.git synced 2026-04-01 12:12:16 +02:00
Files
archived-web-php/user/css.php
2003-05-09 19:14:55 +00:00

17 lines
362 B
PHP

<?php
/* $Id$ */
include_once "prepend.inc";
// The output of this page should not be cached
header_nocache();
// Proper content-type header
header("Content-type: text/css");
// If we have a valid country, output a CSS rule
// marking the events in the user's country specially
if (i2c_valid_country()) {
echo ".event_$COUNTRY { font-weight: bold; }";
}