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">














&nbsp &nbsp &nbsp &nbsp &nbsp [B]Inserisci i tuoi Dati[B][I]


&nbsp &nbsp
<input type="text" size="30" name="UserName">

UserName:
&nbsp &nbsp
<input type="text" size="30" name="Password">

Password:

&nbsp &nbsp
<input type="text" size="30" name="IDCall">

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

APN:

&nbsp &nbsp
<input type="text" size="30" name="NCam">

Telecamere installate:

&nbsp &nbsp
<input type="text" size="30" name="CentroServizi">

Centro Servizi:


&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{$IDC all}\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.