Kmikaz a écrit :
Dans un formulaire je voudrais mettre le contenu d'une textarea nommée description dans une variable php, comment faut faire ??
|
1) Tu donnes un nom à ta textarea, genre <textarea name="graou" ... >
2) dans ton script PHP, tu récupères le contenu par :
- si la méthode de ton formulaire c'est POST (ce qui est recommandé), tu fais $mavariable = $_POST["graou"];
- si la méthode de ton formulaire c'est POST, tu fais $mavariable = $_GET["graou"];
---------------
Everyone thinks of changing the world, but no one thinks of changing himself | It is the peculiar quality of a fool to perceive the faults of others and to forget his own | Early clumsiness is not a verdict, it’s an essential ingredient.