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
|
<?php session_start(); ?>
<form method="POST" >
<?php if ($_REQUEST['intervention']=='') {
$_REQUEST['intervention']='Produit';
$_POST['intervention']='Produit';
} ?>
<input name="intervention" type="radio" value="Produit" checked="checked"
<?php if($_POST['intervention']=="Produit") {
$_REQUEST['intervention']='Produit';
echo "checked";
}
?>>Produit<br>
<input name="intervention" type="radio" value="Travaux"
<?php if($_POST['intervention']=="Travaux") {
echo "checked"; }
?>>Travaux<br>
<input name="intervention" type="radio" value="Autre"
<?php if($_POST['intervention']=="Autre") {
echo "checked"; }
?>>Autre<br>
<input name="Valider" type="submit" value="Valider" >
<br><br>
<?php if(isset($_POST['intervention'])){
if ($_POST['intervention']=="Produit") {
echo '<fieldset>
<legend>PRODUITS</legend>
<strong>Références du produit:</strong> <input name="References produit" type="text" size="8" >
<br /><br />
<strong>Nom du produit:</strong> <input name="Nom produit" type="text" size="8" >
<br /><br />
<strong>Quantité achetée:</strong> <input name="Quantité produit" type="text" size="8" >
<br /><br />
<input name="Ajout produit" type="button" value="Ajouter Produit" >
</fieldset><br />
<br><br>';
}
elseif ($_POST['intervention']=="Travaux"){
echo '<fieldset>
<legend>TRAVAUX</legend>
<strong>Type Travaux:</strong> <select name="Typetravaux">
<option>Réparation</option>
<option>Vidange</option>
<option>Contrôle technique</option>
<option>Révision</option>
</select>
<br /><br />
<strong>Observations:</strong><br />
<textarea name="autre" cols="40" rows="5" ></textarea>
<br /><br />
<input name="Ajout Travaux" type="button" value="Ajouter Travaux" >
</fieldset><br />
<br /><br />';
}
elseif ($_POST['intervention']=="Autre") {
echo '<fieldset>
<legend>AUTRE</legend>
<strong>Observations:</strong><br />
<textarea name="autre" cols="40" rows="5" ></textarea>
</fieldset><br />
<br><br>';
}
//elseif ($_POST['intervention']=="") {
//echo "bip";
//}
} ?>
</form> |
Partager