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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Accueil</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>DIAPORAMAS MOUSEOVER</h1>
<?php
$conf= $this->conf;
?>
<?php
$ok = 0;$i=1;
$nbimages = $conf->nb_images;
while(!$ok)
{
if ($i < $nbimages + 1)
{
$ext_name = chr(ord('a')+$i-1);
$pic = "localhost/monsite/images/".$content->id.$ext_name."_t.jpg";
if (file_exists( $pic))
{
echo "<div class='image'><a href='".$linkTarget."'><img id='".$content->id."' name='adimage".$content->id."' src='".$this->baseurl."images/".$content->id.$ext_name."_t.jpg' /></a></div>";
$ok = 1;
}
}
else if ($nbimages != 0)
{
echo "<a href='".$linkTarget."'>'<img id='".$content->id."' class='adimage' src='".$this->baseurl."images/nopic.gif' /></a>";
$ok = 1;
}
else
{
$ok = 1;
}
$i++;
}
?>
<div>
</body> |
Partager