The form here show input if a value is verified by the user, therefore a dynamic form field is required:
<form class="form-horizontal" method="POST" action="ajouterProduit4" name="formulaire">
<div class="panel panel-default tabs">
<ul class="nav nav-tabs" role="tablist">
<li class="active"><a href="ajouterProduit2"><button name="btn2" style="background: transparent; border: none;">Fiche Technique</button></a></li>
</ul>
<div class="panel-body tab-content">
<div class="tab-pane active" id="tab-second">
<?php
$reqt1 = "SELECT c.Libelle,c.ID FROM caracteristique c,fichetechnique f WHERE c.fichetechniqueID=f.ID AND c.fichetechniqueID='$categorie' LIMIT 0,10";
$reqt2 = "SELECT c.Libelle,c.ID FROM caracteristique c,fichetechnique f WHERE c.fichetechniqueID=f.ID AND c.fichetechniqueID='$categorie' LIMIT 10,10";
$rest1=mysqli_query($conne,$reqt1);
$rest2=mysqli_query($conne,$reqt2);
?>
<div class="col-md-6" id="txtHint">
<?php
while ($rowt1= mysqli_fetch_row($rest1)) {
?>
<div class="form-group">
<label class="col-md-3 control-label"><?php echo $rowt1[0] ?></label>
<div class="col-md-9">
<div class="input-group">
<span class="input-group-addon"><span class="fa fa-pencil"></span></span>
<input name="rowt1" type="text" class="form-control" />
</div>
</div>
</div>
<?php } ?>
</div>
<div class="col-md-6">
<?php
while ($rowt2= mysqli_fetch_row($rest2)) {
?>
<div class="form-group">
<label class="col-md-3 control-label"><?php echo $rowt2[0] ?></label>
<div class="col-md-9">
<div class="input-group">
<span class="input-group-addon"><span class="fa fa-pencil"></span></span>
<input name="rowt2" type="text" class="form-control"/>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<div class="panel-footer">
<input type="reset" class="btn btn-default" value="Réinitialiser">
<button name="envoyer" class="btn btn-primary pull-right">Etape 3 <span class="fa fa-arrow-right fa-right"></span></button>
</div>
</div>
</div>
</form>
However, I don't know how to go about inserting data into the database when it is not clear what the data may be (specifically the category)
In pseudocode it would be ("INSERT INTO Category(Value) values ($value)")
N.B: I only use procedural php