Problemi lettura filetxt (PHP)

di il
1 risposte

Problemi lettura filetxt (PHP)

Buon giorno a tutti.
Da una pagina html e una php riesco a scrivere un filetxt a secondo di quello che ho scritto nei vari textarea html "posto il codice"

Pagina html:
<html>
<head>
<title>SetUp</title>
</head>
<body>
<form action="result.php" method="post">
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
&nbsp &nbsp &nbsp &nbsp &nbsp <B>Inserisci i tuoi Dati<B><I>
<BR>
&nbsp &nbsp <BR><input type="text" size="30" name="UserName">
<BR>UserName:
&nbsp &nbsp <BR><input type="text" size="30" name="Password">
<BR>Password:

&nbsp &nbsp <BR><input type="text" size="30" name="IDCall">
<BR>ID Call:
&nbsp &nbsp <BR><input type="text" size="30" name="APN">
<BR>APN:

&nbsp &nbsp <BR><input type="text" size="30" name="NCam">
<BR>Telecamere installate:

&nbsp &nbsp <BR><input type="text" size="30" name="CentroServizi">
<BR>Centro Servizi:
<BR><br>&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
&nbsp &nbsp &nbsp <input type="submit" value="Salva"></form>
</body>
</html>
<body background="Sfondo.JPG">

Pagina PHP:
<?php
$UserName= $_POST['UserName'];
$Password= $_POST['Password'];
$IDCall= $_POST['IDCall'];
$APN= $_POST['APN'];
$NCam= $_POST['NCam'];
$CentroServizi= $_POST['CentroServizi'];
$fp = fopen("SetUp.ini","w"); //apro il file dove salvare i dati
if(fwrite($fp,"{$UserName}\r\n{$UserName}\r\n{$IDCall}\r\n{$APN}\r\n{$NCam}\r\n{$CentroServizi}"))
header("Location: setup.html");
fclose($fp); //chiudo il file
?>
e ottengo un file .ini o .txt tipo questo:
admin1
admin
+39327224544440
11
6
Ora vorrei rileggere questi dati da un'altra pagina html ma non a video ma ogni dato dentro il textarea corrispondente, cioe' admin1 dentro il textarea "username" e admin dentro la textarea "Password".
E' possibile?
Grazie anticipatamente.

1 Risposte

Devi accedere o registrarti per scrivere nel forum
1 risposte