De antemano les comento que soy caso cero en esto, pero intento.
Tengo un formulario que funciona perfectamente y quisiera que envíe por correo los checkbox seleccionados, este es el código:
Cita:
El problema está en el process.php, no se como hacerlo para que me envíe el resultado a mi correo.El Form
<form enctype='multipart/form-data' action='process.php' method='post'><?
$i = ElVolcan100;
while ($i < ElVolcan190){
?>
Nombre Nº------> <? echo $i; ?>: <input type="checkbox" name="eleccion[]" id="eleccion<? echo $i; ?>" value="<? echo $i; ?>" /><br />
<? $i++; } ?>
<input type="submit" name="boton" value="Confirmar" />
</form>
</body>
</html>
<form enctype='multipart/form-data' action='process.php' method='post'><?
$i = ElVolcan100;
while ($i < ElVolcan190){
?>
Nombre Nº------> <? echo $i; ?>: <input type="checkbox" name="eleccion[]" id="eleccion<? echo $i; ?>" value="<? echo $i; ?>" /><br />
<? $i++; } ?>
<input type="submit" name="boton" value="Confirmar" />
</form>
</body>
</html>
Agradezco vuestra ayuda.