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
|
echo" <form name=\"export\" action =\"verifVote.php\" method=\"post\" OnSubmit=\"javascript: soumettre_1liste( document.forms[0].choix );\" action=\"export.php\">
<table summary=\"\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<th style=\"width: 90px;\"></th>
<th style=\"width: 220px;\"></th>
<th style=\"width: 150px;\"></th>
<th style=\"width: 220px;\"></th>
<th style=\"width: 90px;\"></th>
</tr>
<tr>
<td><br /></td>
<td>Candidats : <br /></td>
<td><br /></td>
<td>Vote : <br /></td>
<td><br /></td>
</tr>
<tr>
<td><br /></td>
<td rowspan=\"7\">
<select name=\"dispo[]\" id=\"dispo\" size=10 style=\"width: 210px;\" size=\"16\" OnDblClick=\"javascript: deplacer( this.form.dispo, this.form.choix );\" multiple>";
remplirListe();
echo" </select><br />
</td>
<td><br /></td>
<td rowspan=\"7\">
<select name=\"choix[]\" id=\"choix\" size=10 style=\"width: 210px;\" size=\"16\" OnDblClick=\"javascript: deplacer( this.form.choix, this.form.dispo );\" multiple >
</select><br />
</td>
<td><br /></td>
</tr>
<tr>
<td><br /></td>
<td><input type=\"button\" value=\"ajouter >\" OnClick=\"javascript: deplacer( this.form.dispo, this.form.choix );\" /><br /></td>
<td rowspan=\"2\"><input type=\"button\" value=\"Monter\" OnClick=\"javascript: deplacer_hautbas( this.form.choix, -1 );\" /><br /></td>
</tr>
<tr>
<td><br /></td>
<td><input type=\"button\" value=\"ajouter tout >>\" OnClick=\"javascript: deplacer_tout( this.form.dispo, this.form.choix );\" /><br /></td>
</tr>
<tr>
<td><br /></td>
<td><br /></td>
<td><br /></td>
</tr>
<tr>
<td><br /></td>
<td><input type=\"button\" value=\"< retirer\" OnClick=\"javascript: deplacer( this.form.choix, this.form.dispo );\" /><br /></td>
<td rowspan=\"2\"><input type=\"button\" value=\"Descendre\" OnClick=\"javascript: deplacer_hautbas( this.form.choix, 1 );\" /><br /></td>
</tr>
<tr>
<td><br /></td>
<td><input type=\"button\" value=\"<< retirer tout\" OnClick=\"javascript: deplacer_tout( this.form.choix, this.form.dispo );\" /><br /></td>
</tr>
<tr>
<td><br /></td>
<td><br /></td>
<td><br /></td>
</tr>
</table>
<br />
<input type=\"submit\" value=\"OK\";/> <input type=\"button\" value=\"Annuler\" OnClick=\"javascript: deplacer_tout( this.form.choix, this.form.dispo );\"/><input type=\"submit\" value =\"Vote Blanc\"><br />
</form>";
} |
Partager