j essaye d'envoyer par mail plusieurs données d'un checkbox
Code : Tout sélectionner
<?php
@$graphisme = $_POST["graphisme"];
for ($i=0; $i<count($graphisme); $i++) {$graphisme[$i].'<br />';}
$mail = 'choix: '.$graphisme[$i].'<br />';."\r\n";
?>
<html>
<body>
<form action="test.php" method="post">
<?php echo $mail; ?>
Qu'est-ce que vous aimer ?<br />
<input type="checkbox" name="graphisme[]" value="web" />
Faire du shopping<br />
<input type="checkbox" name="graphisme[]" value="design" />
Faire du sport<br />
<input type="checkbox" name="graphisme[]" value="php" />
Aller au théatre<br />
<input type="checkbox" name="graphisme[]" value="html" />
Aller au cinéma<br />
<input type="submit" value="Ma réponse"/>
</form>
</body>
</html>choix=web
choix=design
merci d'avance