Enviar un checkbox por mail con php
Hola. Tengo un formulario en html con una pregunta y 4 respuestas con checkbox. ¿Cómo puedo enviar los resultados a mi correo mediante php? El código de mi formulario es:
<body>
<table width="203" border="0">
<tr>
<td>¿Cuáles son tus temas favoritos?</td>
</tr>
</table>
<table width="200">
<tr>
<td><label>
<input type="checkbox" name="temas" value="salud" id="temas_0" />
Salud</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="temas_" value="musica" id="temas_1" />
Música</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="temas_" value="arte" id="temas_2" />
Arte</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="temas_" value="computacion" id="temas_3" />
Computación</label></td>
</tr>
</table>
</body>
Muchas gracias a quien pueda ayudarme!
<body>
<table width="203" border="0">
<tr>
<td>¿Cuáles son tus temas favoritos?</td>
</tr>
</table>
<table width="200">
<tr>
<td><label>
<input type="checkbox" name="temas" value="salud" id="temas_0" />
Salud</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="temas_" value="musica" id="temas_1" />
Música</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="temas_" value="arte" id="temas_2" />
Arte</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="temas_" value="computacion" id="temas_3" />
Computación</label></td>
</tr>
</table>
</body>
Muchas gracias a quien pueda ayudarme!
1 respuesta
Respuesta de xhiena
1