<?php

    
// Configuration.
    
$conf['file'] = 'excuses.txt';
    
$conf['error'] = 'Excuse not available at this time';

    
// Chargement des donnés du fichier.
    
@$raw file(dirname(__FILE__).'/'.$conf['file']);

    
// Affichage du sous-titre.
    
echo ($raw?$raw[rand(0count($raw))]:$conf['error']);

?>