Bonjours;
J'ai deux pages web en php consultation_client.php et article_client.php dans la première page je saisi une valeur dans le champ de texte puis je clique sur un bouton je voudrais cette valeur sera retournée dans la deuxième page (dans un champ de texte) voilà le code: page consultation_client.php
<?php
/*connexion */
echo'<form action="article_consulte.php" method="GET">';
/*les instructions */
<?php
echo'<input type="text" name="v_ref_clt" style="width:197px"/></a>';
?>
/*les instructions */
<?php echo'<a href="/Gestion_Commerciale/ventes/article_consulte.php?action=article_consulte&v_ref_consult='.$_GET['v_ref_clt'].'"> <input type="submit" value="consulter" /></a></td>' ?> </form>
et dans la deuxième page article_consulte.php
/*les instructions */
<input type="text" name="v_ref_clt" value="<?php echo ($_GET['v_ref_consult']);?>"/>
/*les instructions */
Cordialement