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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
| <html>
<head>
<title>Formulaire table question</title>
<!--ici commence ma fonction javascript pour ajouter un caractère-->
<script type="text/javascript">
function ajouter(caracteres) {
window.document.ltrePhonetique.affiche.value =
window.document.ltrePhonetique.affiche.value + caracteres;
}
</script>
<!--ici mon style css-->
<style type="text/css">
.ltre {width:33pt; font-size:20pt; color:#CC0033; font-family:'Times New Roman'; }
.phon {width:38pt; font-size:20pt; color:#9900CC; font-family:'Times New Roman'; }
.affiche { width:600; text-align:right; font-family:'Simplified Arabic','Times New Roman'; font-size:30pt; }
</style>
</head>
<body>
<form action="form_tb_question_bm.php" method="post" >
<div class="blue">
<h1></h1>
<h1>remplir la table question de la base Morphosyntaxique</h1>
<label>idrubrique</label>
<table>
<select name="idrubrique">
<option value="1">le duel</option>
<option value="2">le pluriel</option>
<option value="4">le genre</option>
</select>
</table>
<br>
<label>idquestion</label>
<br>
<input type="text" name="idq">
<br>
<label>Code question</label><br>
<input type="text" name="code">
<br>
<label>texte arabe</label><br>
<input type="text" name="affiche" align="right" class="affiche">
<!--<input type="text" name="ta">-->
<br>
<label>Transcription phonétique</label><br>
<input type="text" name="tp">
<br>
<label>Traduction en français</label><br>
<input type="text" name="trad">
<br>
<label>Image</label><br>
<input type="text" name="image">
<br><br>
<input type="submit" name="Submit" value="Valider">
<input type="hidden" name="act" value="1">
<input type="reset" name=Effacer VALUE="Effacer" >
</div>
</form>
<form name="ltrePhonetique" action="" onSubmit="ajouter();return false;">
<table>
<tr>
<td>
<input type="text" name="affiche" align="right" class="affiche">
</td>
</tr>
<tr>
<td>
<table>
<tr align=center class=phon>
<td>d</td>
<td>ѕ</td>
<td>ʃ</td>
<td>ѕ</td>
</tr>
<tr align=center>
<td><input type=button value="ض" onclick="ajouter('d')" class=ltre></td>
<td><input type=button value="ص" onclick="ajouter('ѕ')" class=ltre></td>
</tr>
<br>
<tr align=center class=phon>
<td>ʔ</td>
<td>y</td>
</tr>
<tr align=center>
<td><input type=button value="ء" onclick="ajouter('ʔ')" class=ltre></td>
<td><input type=button value="ي" onclick="ajouter('y')" class=ltre></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html> |
Partager