Quelques questions supplémentaires:
Est ce que je peux modifier mon code pour introduire du php sur ces pages:
(index.html)
<form id="slideForm">
Sélectionner le slide à afficher : <br>
<select id="slide" onchange="SelectSlide(this.form)">
<option value="1">Aerosmith</option>
<option value="2">Coldplay</option>
<option value="3">Green Day</option>
<option value="4">Hoobastank</option>
<option value="5">Linkin Park</option>
<option value="6">Mika</option>
<option value="7">RazorLight</option>
<option value="8">Red Hot Chili Peppers</option>
<option value="9">U2</option>
<option value="10">Will SMith</option>
</select>
</form>
(listcovers.xml)<list>
<image id="1">
<path><![CDATA[images/Aerosmith-Devils_Got_A_New_Disguise.jpg]]></path>
</image>
<image id="2">
<path><![CDATA[images/Coldplay-XY.jpg]]></path>
</image>
<image id="3">
<path><![CDATA[images/Green_Day-American_Idiot.jpg]]></path>
</image>
<image id="4">
<path><![CDATA[images/Hoosbastank-The_Reason.jpg]]></path>
</image>
<image id="5">
<path><![CDATA[images/Linkin_Park-Minutes_To_Midnight.jpg]]></path>
</image>
<image id="6">
<path><![CDATA[images/Mika-Life_In_Cartoon_Motion.jpg]]></path>
</image>
<image id="7">
<path><![CDATA[images/Razorlight-Razorlight.jpg]]></path>
</image>
<image id="8">
<path><![CDATA[images/Red_Hot_Chili_Pepper-Stadium_Arcadium.jpg]]></path>
</image>
<image id="9">
<path><![CDATA[images/U2-Best_Of_1980-1990.jpg]]></path>
</image>
<image id="10">
<path><![CDATA[images/Will_Smith-Lost_And_Found.jpg]]></path>
</image>
(infocd.js)
function info1() {
tracks = Array(Array("Dude (Looks Like A Lady)", "4:23", "
[ Lien ]="),
Array("Love In An Elevator", "5:23", "
[ Lien ]="),
Array("Livin' On The Edge", "5:07", "
[ Lien ]="),
Array("Walk This Way", "3:43", "
[ Lien ]="),
Array("Cryin'", "5:10", "
[ Lien ]="),
Array("Jaded", "3:36", "
[ Lien ]="),
Array("Crazy", "4:07", "
[ Lien ]="),
Array("Angel", "5:08", "
[ Lien ]="),
Array("Janie's Got A Gun", "4:34", "
[ Lien ]="),
Array("Amazing", "5:59", "
[ Lien ]="),
Array("The Ohter Side", "4:08", "
[ Lien ]="),
Array("Dream On", "4:28", "
[ Lien ]="),
Array("Sweet Emotion", "3:14", "
[ Lien ]="),
Array("Falling In Love (Is Hard On The Knees", "3:27", "
[ Lien ]="),
Array("Pink", "3:57", "
[ Lien ]="),
Array("I Don't Want To Miss A Thing", "4:28", "
[ Lien ]="));
return ConvertArrayToText(tracks);
}