Código final:
Código PHP:
<?php
if (! is_file($_REQUEST['Nick'] . ".txt"))
{
$ar=fopen($_REQUEST['Nick'] . ".txt","a+");
{
$datos = "$_REQUEST[Nick]|$_REQUEST[Password]|$_REQUEST[Email]";
fwrite($ar, $datos);
echo "Los datos se cargaron correctamente.";}
}
else {
header('Location: /pagina.html');
}
?>
Funciona y todo!
Muchísimas gracias pateketrueke