|
|
|
|
Bonjour,
<form method="POST" action="traitement.php"> <textarea name="contenu" cols="50" rows="10"></textarea> <input type="submit" value="Envoyer" /> </form> Dans la page traitement.php tu récupères le contenu du textarea et tu l'affiches: if (isset ($_POST['contenu'])
{
$contenu = $_POST['contenu'] ;
echo $contenu;
}
Tu peux regarder là pour plus d'informations: http://www.siteduzero.com/tuto-3-180-1-php-et-les-formulaires.html Cordialement Revan There are 10 types of people in the world: those who understand binary and those who don't. |