Formulario (parte Html)
Código HTML:
<html> <head><title> Aporta un juego</title> <link href="../css/texto.css" rel="stylesheet" type="text/css"> <link href="../../css/texto.css" rel="stylesheet" type="text/css"> </head> <body> <p class="Titulo">Envia tu Juego</p> <table border="1" cellpadding="0" cellspacing="0"> <tr> <td> <p class="Subtitulo"> Datos Personales</p> <form action="juegos.php" method="post"> <p> Nombre: <input type="text" name="nombre" maxlength="15"> <br> E-mail: <input type="text" name="mail" maxlength="20"> <br> <hr size="1" color="#000000"> <p class="Subtitulo"> Datos del Juego</p> <p> Nombre: <input type="text" name="njuego" maxlength="50"> <br> Link: <input type="text" name="ljuego" maxlength="50"> <br> Categoria: <input type="text" name="cjuego" maxlength="50"> <br><br> <input type="submit" value="Enviar" name="enviar"> <input type="reset" value="Limpiar" name="limpiar"> </p> </form> </td></tr></table> </body> </html>
Código PHP:
<html>
<head> <title>Se ha enviado con exito</title> </head>
<body>
<?php
$ar=fopen("../Prueba/juego/juegos.txt","a") or
die("Problemas en la creacion");
$fecha = date("j F, Y, g:i a");
fputs($ar, "Fecha: $fecha");
fputs($ar, "Datos Personales");
fputs($ar,"\n");
fputs($ar, "Nombre:");
fputs($ar,$_REQUEST['nombre']);
fputs($ar,"\n");
fputs($ar, "Mail:");
fputs($ar,$_REQUEST['mail']);
fputs($ar,"\n");
fputs($ar, "Datos del Juego");
fputs($ar,"\n");
fputs($ar, "Nombre:");
fputs($ar,$_REQUEST['njuego']);
fputs($ar,"\n");
fputs($ar, "Link:");
fputs($ar,$_REQUEST['ljuego']);
fputs($ar,"\n");
fputs($ar, "Categoria:");
fputs($ar,$_REQUEST['cjuego']);
fputs($ar,"\n");
fputs($ar,"---------------------------------------");
fputs($ar,"\n");
fclose($ar);
echo "Se ha enviado con exito, el Staff. te agradece <br> En el lapso de 4 dias tu juego se subirá";
?>
</body>
</html>
Alaan.