<? // --------------------------------------------- // | Comic COMPONENT | // | | // | Copyright (C) 2005 Rdemont | // | | // | All rights reserved | // --------------------------------------------- // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License (GPL) // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // Please note that the GPL states that any headers in files and // Copyright notices as well as credits in headers, source files // and output (screens, prints, etc.) can not be removed. // You can extend them with your own credits, though... // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // // The "GNU General Public License" (GPL) is available at // http://www.gnu.org/copyleft/gpl.html. //----------------------------------------------------------------------------- //-------------------------------------------------------------------------------------------------- // Autorisation d'accès defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); //-------------------------------------------------------------------------------------------------- ?> <table width="100%" cellpadding="5" align="center"> <tr> <td colspan="2" align="left" class="title"><?php echo $row->title ;?></td> </tr> <tr> <td width="30%" align="left"><b><?php echo _COMIC_SERIE ;?></b></td> <td width="70%" align="left"><?php echo $row->serieName ;?></td> </tr> <tr> <td width="30%" align="left"><b><?php echo _COMIC_PUBLISHER ;?></b></td> <td width="70%" align="left"><?php echo $row->publisherName ;?></td> </tr> <tr> <td width="30%" align="left"><b><?php echo _COMIC_PRICE ;?></b></td> <td width="70%" align="left"><?php echo $row->price ;?></td> </tr> <tr> <td width="30%" align="left"><b><?php echo _COMIC_DESCRIPTION ;?></b></td> <td width="70%" align="left"><?php echo $row->description ;?></td> </tr> <tr> <td width="30%" align="left"><b><?php echo _COMIC_VOLUMENUMBER;?></b></td> <td width="70%" align="left"><?php echo $row->volumeNumber ;?> / <?php echo $row->NumberOfVolume ;?></td> </tr> <tr> <td width="30%" align="left"><b><?php echo _COMIC_OWNER ;?></b></td> <td width="70%" align="left"><?php echo $row->username ;?></td> </tr> </table>