1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Matricule : <input type="text" name="matricule" /> <br>
Sujet : <input type="text" name="sujet" size="30" maxlength="40"> <br>
<?php $matricule="";
if (isset ($_POST['matricule'])) //si la variable matricule éxiste
{ $matricule=$_POST['matricule']; }
$sujet="";
if (isset ($_POST['sujet'])) //si la variable sujet existe
{ $sujet = addslashes($_POST['sujet']) ; }
?>
<?php echo ' <a href="modifierform.php?matricule=' .$matricule . '&sujet=' .$sujet .'"> '; ?>Modifier Formulaire </a><br>
</form> |