Index du Forum » » Le coin des codeurs

Auteur

[Résolu] - Variables php dans fonctions en java script
PhilGuen
995      

  Posté : 20-07-2004 08:34

Pour faire + simple et + rationnel



<?PHP
$nbimagesalbum = $nbimages;
$nomalbum = $album;
$titrealbum = $titre;

echo "
<head>
<meta name='ROBOTS' content='NOINDEX'>
<script language=\"!javascript!\">
var nomimage
var pic_numb = 1

function changeimage() {
if (pic_numb > '$nbimagesalbum') pic_numb = 1;
if (pic_numb < 1) pic_numb = '$nbimagesalbum';
nomimage = '$nomalbum' + '/image' + pic_numb + '.jpg';
window.document.images[0].src = nomimage;
}

function affichemaxi()
{
i1 = new Image;
i1.src = nomimage;
html = '<body LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><a HREF=\"!javascript!:window.close()\"><img src=\"'+nomimage+'\" title=\"Cliquez pour fermer\" name=\"imagepopup\"!onload!=\"window.resizeTo(document.imagepopu p.width+40,document.imagepopup.height+37)\"></a></body>'; < br /> popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbar s=1,resizable=1');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close();
}

function afficheimage(nimage)
{
nomimage = '$nomalbum' + '/image' + nimage + '.jpg';
document.write('<IMG SRC=\"'+nomimage+'\" HSPACE=0 VSPACE=0 BORDER=0 width=500 alt=\"Cliquez pour agrandir\" style=\"cursor:hand\" !onclick!=\"affichemaxi()\">');
}
</script>

</head>

<body text='#800000' link='#800000' vlink='#804040' alink='#FF0000' background='bac1.jpg'>
<center>
<input type='button' value='<< Précédente' !onclick!=\"changeimage(pic_numb-=1)\" style='cursor:hand'>
<input type='button' value=' Suivante >> ' !onclick!=\"changeimage(pic_numb+=1)\" style='cursor:hand'>
<br>
<table border='1' width='500'>
<tr>
<td>
<p align='center'>

<i><font face='Times, Times New Roman, serif' size='4'>
$titrealbum
</font></i>
</p>
</td>
</tr>
</table>

<p align='center'>
<script>afficheimage(1)</script>
</p>

</body>
";
?>

Message édité par : PhilGuen




Cet article provient de NPDS

http://www.npds.org/viewtopic.php?topic=12607&forum=5