Tengo el siguiente problema: he creado un form que se envia a través de un archivo php. El problema es que se envia el correo pero los campos estan vacíos.
Dejo el código del php de envio:
Cita:
y el del formulario:<?php
$destinatari = "[email protected]";
$nom_alumne = $_POST['nom_alumne'];
$email = $_POST['email'];
$assumpte = "Activar compte";
$codi_seguretat = $_POST['codi_seguretat'];
$missatge = "Nom: $nom<br>
Missatge: $consulta <br>
Codi de seguretat: $codi_seguretat";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $email\r\n";
mail($destinatari,$assumpte,$missatge,$headers);
?>
$destinatari = "[email protected]";
$nom_alumne = $_POST['nom_alumne'];
$email = $_POST['email'];
$assumpte = "Activar compte";
$codi_seguretat = $_POST['codi_seguretat'];
$missatge = "Nom: $nom<br>
Missatge: $consulta <br>
Codi de seguretat: $codi_seguretat";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $email\r\n";
mail($destinatari,$assumpte,$missatge,$headers);
?>
Cita:
<form id="activa" action="activa4.php" method="post" name="activa" enctype="text/plain">
<table id="taula_activacio" style="margin-top: 30px;" border="0">
<tbody>
<tr>
<td style="padding-right: 30px; padding-left: 30px;"><label for="email_activacio">Email</label></td>
<td><input id="email_activacio" type="text" name="email_activacio" size="50" maxlength="50" /></td>
</tr>
<tr>
<td style="padding-right: 30px; padding-left: 30px; padding-top: 20px;"><label style="color: #000;" for="nom_alumne">Nom alumne</label></td>
<td style="padding-top: 20px;"><input id="nom_alumne"/></td>
</tr>
<tr>
<td><label style="color: #000;" for="codi_seguretat">Codi de seguretat</label></td>
<td style="padding-top: 20px;"><input id="codi_seguretat" type="password" name="codi_seguretat" size="50" maxlength="20" /></td>
</tr>
<tr>
<td>*</td>
<td style="padding-top: 30px;" align="right"><input name="submit" type="submit" value="Activar" /></td>
</tr>
</tbody>
</table>
</form>
<table id="taula_activacio" style="margin-top: 30px;" border="0">
<tbody>
<tr>
<td style="padding-right: 30px; padding-left: 30px;"><label for="email_activacio">Email</label></td>
<td><input id="email_activacio" type="text" name="email_activacio" size="50" maxlength="50" /></td>
</tr>
<tr>
<td style="padding-right: 30px; padding-left: 30px; padding-top: 20px;"><label style="color: #000;" for="nom_alumne">Nom alumne</label></td>
<td style="padding-top: 20px;"><input id="nom_alumne"/></td>
</tr>
<tr>
<td><label style="color: #000;" for="codi_seguretat">Codi de seguretat</label></td>
<td style="padding-top: 20px;"><input id="codi_seguretat" type="password" name="codi_seguretat" size="50" maxlength="20" /></td>
</tr>
<tr>
<td>*</td>
<td style="padding-top: 30px;" align="right"><input name="submit" type="submit" value="Activar" /></td>
</tr>
</tbody>
</table>
</form>