example, all these pages use the same template
http://ecolopop.free.fr
http://ecolopop.free.fr/index.php?wildlife
http://ecolopop.free.fr/index.php?_bgk
here is the code snippet
Code: Select all
[PHP]
$lid= $GLOBALS['content']['cat_id'];
$path = "img/ecolopop/tl/";
$l="";
$limggif= $path . "l" . $lid . ".gif";
$limgjpg= $path . "l" . $lid . ".jpg";
if (is_file($limgjpg)) $l=$limgjpg;
if (is_file($limggif)) $l=$limggif;
if ($l=="") $l=$path . "l.gif";
echo "<a href=/><img src=" . $l . " border=0 width=356 height=85></a>";
[/PHP]