Home > Features
The following feature stories are provided for information and use by journalists. For more information about topics within these stories, please use the Contacts for Journalists page.
<%
# ron's perl stuff - don't touch!
BEGIN {
$seconds = time;
@date = localtime($seconds);
$day = $date[6];
if ($day < 10) { $wday = "0" . $day; }
$website_drive = "d:";
}
# the features MUST be in: /lrh_media/eng/enclosed/features and they must be called quotexx.txt
$featurefilename = $website_drive . "/lrh_media/eng/enclosed/features/" . "feature" . $wday . ".txt";
open(FEATUREFILE,$featurefilename);
undef $/;
$feature = ;
close(FEATUREFILE);
if ($feature eq "") { print "error: I tried to open $featurefilename"; }
else { print $feature;}
#next line for testing only
#print $day;
%>
|