hola, soy nuevo en este foro, y yo solo tengo 13 años, y me pregunto porque no funciona este form que requiero para mi web www.breaklo.mundesweb.com y no se porque no funciona. Para mi lo hise bien, todo, la parte HTML y PHP, si me pueden ayudar les doy gracias y reputacion.
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>
Formulario (parte PHP)
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.