Source de: form3.html
Retour
<html>
<head><title>Formulaire d'inscription</title>
<link rel="stylesheet" href="../css/sga.css" type="text/css" />
<!-- Code servant a afficher le source. -->
<A href="show_source.php?script=form3.html">Voir source de form3.html</A><br>
<A href="show_source.php?script=form3.php">Voir source de form3.php</A><br><br>
<!-- Code de l'exercice. -->
</head>
<body>
<form action="form3.php" method="POST">
<h3 align="center">Formulaire d'inscription</H3>
<table border=1 align="CENTER" width="50%">
<tr align="CENTER">
<td colspan=2 > Madame :
<input type="radio" value="Madame" name="civ" />
Mademoiselle :
<input type="radio" value="Mademoiselle" name="civ" />
Monsieur :
<input type="radio" value="Monsieur" name="civ" /> </td>
</tr>
<tr>
<td width="32%">Nom :</td>
<td width="68%"><input type="text" value="" name="nom" size=40 /></td>
</tr>
<tr>
<td>Prénom :</td>
<td><input type="text" value="" name="prenom" size=40 /></td>
</tr>
<tr>
<td>Adresse</td>
<td><textarea rows="3" name="adresse"></textarea></td>
</tr>
<tr>
<td>Courriel : </td>
<td><input type="text" value="" name="courriel" size=40 /></td>
</tr>
<tr>
<tr>
<td colspan=2 align="center">Choix des cours:</tr>
<tr>
<td valign="top">Principaux :
<div align="right"> Mathématiques : <input type="checkbox" value="Mathématiques" name="cours[]" /><br>
Physique : <input type="checkbox" value="Physique" name="cours[]" /><br>
Français :<input type="checkbox" value="Français" name="cours[]" />
</div></td>
<td valign="top"> Optionnels<br>
<select name="coursoption[]" MULTIPLE >
<option>Anglais</option>
<option>Espagnol</option>
<option>Art plastique</option>
</select>
</td>
</tr>
<tr>
<td colspan=2 align="center"><input type="submit" value="Envoyer" name="Submit" /></td>
</tr>
</table>
</form>
</body>
</html>
Traité le : 28/08/2026 12:55:56