Corrige une faute de frappe
[banana.git] / examples / pj.php
CommitLineData
d43ebde4 1<?php
2/********************************************************************************
3* pj.php : for getting attachments
4* -----------
5*
6* This file is part of the banana distribution
7* Copyright: See COPYING files that comes with this distribution
8********************************************************************************/
9
10require_once("banana/banana.inc.php");
11$res = Banana::run();
2509bf96 12if ($res != "") {
13?>
14<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
15<html>
16 <head>
17 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
18 <meta name="description" content="WebForum2/Banana">
19 <link href="css/style.css" type="text/css" rel="stylesheet" media="screen">
20 <link href="css/banana.css" type="text/css" rel="stylesheet" media="screen">
21 <title>
22 Banana, a NNTP<->Web Gateway
23 </title>
24 </head>
25 <body>
26 <div class="bloc">
27<?php echo $res; ?>
28 <div class="foot">
29 <em>Banana</em>, a Web interface for a NNTP Server<br />
30 Developed under GPL License for <a href="http://www.polytechnique.org">Polytechnique.org</a>
31 </div>
32 </div>
33 </body>
34</html>
35<?php
36}
d43ebde4 37
38?>
39