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 69 70 71 72 73 74 75 76 77 78 79 80
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Slide</title>
<link rel="stylesheet" href="style/style.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<?php include("Titre.php"); ?>
<div id="titre">Photos</div>
<div id="centre">
<form method="post">
<table border="0" align="center" width="700">
<tr>
<td><br><input type="submit" value="Changer de galerie" /></td>
<td></td>
</tr>
<tr>
<td>
<table border="0" align="center" width="300">
<tr>
<td align="left" height="100">
<b><input name="galerie" type="radio" value="0" onclick="<?php $galerie=0 ?>" checked>Galerie 1 : Passion Musique</b><br>
<a href="http://guitare-nancy.over-blog.com" target="_blank">[Découvrir mon site web "Guitare-Nancy"]</a>
</td>
</tr>
<tr>
<td align="left" height="100">
<b><input name="galerie" type="radio" value="1" onclick="<?php $galerie=1 ?>">Galerie 2: Passion Modélisme</b><br>
<a href="http://yellowsub.over-blog.com" target="_blank">[Découvrir mon site web "YellowSubmarine"]</a></td>
</td>
</tr>
<tr>
<td align="left" height="100">
<b><input name="galerie" type="radio" value="2" onclick="<?php $galerie=2 ?>">Galerie 3 : Passion Photo</b>
</td>
</tr>
</table>
</form>
</td>
<td>
<table border="0" align="center" width="400">
<tr>
<td align="center">
<div id="slide">
<?php
if (isset($_POST['galerie']))
{ $resulgalerie = $_POST['galerie']; } else { $resulgalerie = ''; }
if($resulgalerie==0)
{ echo " <object type=application/x-shockwave-flash height=300 width=400 data=dewslider/Musique/dewsliderMusique.swf?xml=dewslider/Musique/dewsliderMusique.xml&randomstart=1&timer=5&showbuttons=1&showtitles=0>
<param name=src value=dewslider/Musique/dewsliderMusique.swf?xml=dewslider/Musique/dewsliderMusique.xml&randomstart=1&timer=5&showbuttons=1&showtitles=0>
</object> "; }
if($resulgalerie==1)
{ echo " <object type=application/x-shockwave-flash height=300 width=400 data=dewslider/Modelisme/dewsliderModelisme.swf?xml=dewslider/Modelisme/dewsliderModelisme.xml&randomstart=1&timer=5&showbuttons=1&showtitles=0>
<param name=src value=dewslider/Modelisme/dewsliderModelisme.swf?xml=dewslider/Modelisme/dewsliderModelisme.xml&randomstart=1&timer=5&showbuttons=1&showtitles=0>
</object> "; }
if($resulgalerie==2)
{ echo " <object type=application/x-shockwave-flash height=300 width=400 data=dewslider/Photos/dewsliderPhoto.swf?xml=dewslider/Photos/dewsliderPhoto.xml&randomstart=1&timer=5&showbuttons=1&showtitles=0>
<param name=src value=dewslider/Photos/dewsliderPhoto.swf?xml=dewslider/Photos/dewsliderPhoto.xml&randomstart=1&timer=5&showbuttons=1&showtitles=0>
</object> "; }
?>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<?php include("Bas.php"); ?>
</body>
</html> |
Partager