El formulario es este:
Código HTML:
<form method="post" action="phpsubirtutorial.php" onSubmit="return validar(this)" name="formtutoriales"> <table cellpadding="0" cellspacing="0" border="1" bordercolor="#999999"> <tr> <td>Tu nombre: </td><td><input type="text" name="nombre" id="nombre" size="42" /></td> </tr> <tr> <td>Tu email: </td><td><input type="text" name="email" id="email" size="42" /></td> </tr> <tr> <td>¿De que es? </td><td><select name="codigo"><option>PHP</option><option>mysql</option><option>CSS</option><option>HTML</option><option>JavaScript</option><option>Photoshop</option><option>Flash</option><option>Fireworks</option><option>After Effects</option><option>Dreamweaver</option></select></td> </tr> <tr> <td>Tutorial: </td><td><textarea name="tutorial" cols="40" rows="50" id="tutorial"></textarea></td> </tr> </table> <input type="submit" value="enviar formulario" /> </form>
Y esto es el phpenviartutorial.php el qual envia los datos a mi correo:
Código PHP:
<?php
//cree nombres de variables
$nombre=$_POST['nombre'];
$email=$_POST['email'];
$codigo=$_POST['codigo'];
$tutorial=$_POST['tutorial'];
$toadress = '[email protected]';
$subject = 'nuevo tutorial para tutorialeserik de (nick)';
$mailcontent = 'Nombre: '.$nombre."\n"
.'Email: '.$email."\n"
.'Codigo: '.$codigo."\n"
."Tutorial: \n".$tutorial."\n";
$fromaddress = 'From: [email protected]';
mail($toaddress, $subject, $mailcontent, $fromaddress);
?>
Y BUENO LO QUE QUERO HACER ES QUE CUANDO ENVIE EL FORMULARIO, A MI ME LLEGUE EL FORMULARIO CON SU NICK EN EL ASUNTO (DONDE PONE NIK KIERO KE SALGA EL NIK REAL DEL QUE LO HA ENVIADO)
NOSE SI ME ESPLICADO BEN SI NO ES ASI ME LO DISEN E INTENTARE ESPLIKARLO MEJOR