salut a tous, je voudrais instaler un sondage sur automne, il fonctionne deja sur mon site en ligne.
j'ai ce code php dans ma page html pour le formulaire:
Code :
<table cellpadding="2" cellspacing="0" width="155" bordercolorlight="#000000" bordercolordark="#CFFEFB" border="1">
<tr valign="bottom" align="center" bgcolor="#7d9c6e"><td align="center"> <B><FONT face="verdana" color="#000000" SIZE="1">Quel type d'article pour voudriez vous lire pour commencer ? </B></td></tr><tr valign="bottom" align="center" bgcolor="#a9b688"><td align="center"><A href='http://www.1001-votes.com' target='_blank'>
<font face="verdana" size="1" color="#000000">1001-votes.com</font></A><BR>
<form onSubmit="return checkv11(this)" method="post" action="http://www.1001-votes.com/vote/mvoteres11.php?idv=87493&lg=fr" target='_blank'><TABLE cellpadding="0" cellspacing="0">
<TR>
<TD VALIGN="top">
<input type="radio" name="vote" value="1" style="border-width: 0; background-color: #87ceeb" >
</TD>
<TD ALIGN="LEFT">
<FONT face="verdana" size="1" color="#000000">L'éducation</font>
</TD>
</TR>
<TR>
<TD VALIGN="top">
<input type="radio" name="vote" value="2" style="border-width: 0; background-color: #87ceeb" >
</TD>
<TD ALIGN="LEFT">
<FONT face="verdana" size=1 color="#000000">Le mordant</font>
</TD>
</TR>
<TR>
<TD VALIGN="top">
<input type="radio" name="vote" value="3" style="border-width: 0; background-color: #87ceeb" >
</TD>
<TD ALIGN="LEFT">
<FONT face="verdana" size="1" color="#000000">La préparation sportive</font>
</TD>
</TR>
<TR>
<TD VALIGN="top">
<input type="radio" name="vote" value="4" style="border-width: 0; background-color: #87ceeb" >
</TD>
<TD ALIGN="LEFT">
<FONT face="verdana" size=1 color=#000000>L'alimentation</font>
</TD>
</TR>
<TR>
<TD VALIGN="top">
<input type="radio" name="vote" value="5" style="border-width: 0; background-color: #87ceeb" >
</TD>
<TD ALIGN="LEFT">
<FONT face="verdana" size="1" color="#000000">L'élevage</font>
</TD>
</TR>
<TR>
<TD VALIGN="top">
<input type="radio" name="vote" value="6" style="border-width: 0; background-color: #87ceeb" >
</TD>
<TD ALIGN="LEFT">
<FONT face="verdana" size="1" color="#000000">Les chiots</font>
</TD>
</TR>
</TABLE> <BR> <input type="hidden" name="idv" value="87493">
<input type="hidden" name="lg" value="fr">
<input type="hidden" name="ncom" value="1">
<input type="hidden" name="ce" value="#b0c4de">
<input type="hidden" name="cp" value="#87ceeb">
<input type="hidden" name="pck" value="30">
<input type="hidden" name="dta" value="3869182545">
<input type="hidden" name="io" value="249">
<input type="hidden" name="versmod" value="1.3">
<input type="hidden" name="ct" value=#000000>
<font size="1">
<INPUT TYPE="submit" VALUE=" Je vote » " onClick="this.value='Vote envoyé'" style="font-size: 10; color:#000000; background-color:#7d9c6e; border-color:#000000; border-width: 1;" > <BR><BR><a href='http://www.1001-votes.com/vote/mvoteres11.php?idv=87493&lg=fr&ncom=1' target='_blank'><font face="verdana" size="1" color="#000000">résultats »</a>
<BR>
</td></td>
</table>
</form>
mais juste avant j'ai un java scripte:
Code :
<SCRIPT LANGUAGE="JavaScript">
function desactiveFormv11(f) {
if (document.all || document.getElementById) {
for (i = 0; i < f.length; i++) {
var t = f.elements[i];
if (t.type.toLowerCase() == "submit" || t.type.toLowerCase() == "reset")
t.disabled = true;
}
}
return true;
}
function checkv11(f) {
res = desactiveFormv11(f);
return true;
}
</SCRIPT>
je voudrais connaitre la marche a suivre svp, je crois avoir compris qu'il doit être dans un dossier js mais je ne sais pas trop comment l’appeler.