<?php
/*
MiniChat
Author : Raphael SANTAMARIA
Email : dexmon@gmail.com
Création : 3/11/2008
*/

$file = 'minichat.php';

if(file_exists($file))
{
  header('Location: '.$file);
}
else
{
  echo '<h4>Veuillez mettre en place le fichier minichat.php svp...</h4>';
}
?>