1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
| <?php include "top.php";
require ("conf.php3");
?>
<center>
<p><b><i><font size="6"><? echo "$party_comment"; ?></font></i></b></p>
</center>
<br>
<TABLE ALIGN="CENTER" cellSpacing=0 cellPadding=0 width=700 bgColor=#000000 border=0>
<?
////////////////////////////////////////////////////////////
// ---------------------------------------------------------
// Page d'agrandissement pour le mode Horizontal
// ---------------------------------------------------------
////////////////////////////////////////////////////////////
require ("exposition.conf.php3");
echo "<table align='center' background=$bgcolor_cadre_b border=$border_cadre_b width=$width_cadre_b cellpadding=$cellpadding_cadre_b><tr><td>";
echo "<table width=$width_images_b background=$bgcolor_b border=$border_images_b cellpadding=$cellpadding_b align=$align_b><tr>";
// ---------------------------------------------------------
// Affichage de l'image agrandie
// ---------------------------------------------------------
echo "<tr><td align=$align_img_b>";
if (file_exists("$big_dir"."/"."$image"))
{
print("<a href='$main_page.php3?debut=$debut'>");
print("<img src=".$big_dir."/".$image." border=0 alt='retour'></a>");
}
else
{
print("<a href='$main_page.php3?debut=$debut'>");
print ("<img src=".$big_dir."/".$no_img." border=0 alt='retour'></a>");
}
echo "</td>";
if ($commentaires == "on")
{
echo "<tr><td>";
echo"<font size=$size><font color=$color_txt_b>";
$Name = substr($image,0,(strlen($image)-4));
if (file_exists("$info_dir"."/"."$Name".".txt"))
{
$mycomment=file("$info_dir"."/"."$Name".".txt");
for($index = 0; $index < count($mycomment); $index++)
{
print($mycomment[$index]);
}
}
else
{
print("$nocomment");
}
echo"</font>";
echo "</td></tr>";
}
echo "</tr></table>";
echo "</td></tr></table>";
/////////////////////// FIN DU SCRIPT /////////////////////////
?> |
Partager