Salve a tutti, vi pongo un altro problema che non sto riuscendo a risolvere con tutto che ho letto un sacco di post su internet. Sto cercando di creare il mio primo sito ed ho iniziato con file "beginning.html" dove ho creato il layout principale. Vi sono alcuni collegamenti ad altri link, tra cui quello inerente al <log in>. Ho creato il file logIn.html dove vengono inseriti i dati di ogni utente che devono essere salvati all'interno di un file di testo. Per far ciò ho creato un file php che ho richiamato all'interno del file logIn.html ma non riesco a salvare i dati.
Vi posto qua i due file:
<html>
<head>
</head>
<body bgcolor="orange">
<body>
<h1>
<font face="Times New Roman" size="7" color="blue">
<p align="center">LOG IN</p>
</font><br />
</h1>
</body>
<body>
<div id="content">
<h1>Let's Start</h1>
<p>Please Enter your data:</p>
<form action="scripts/saveData.php" method="post">
<fieldset>
<label for="first_name">FIRST NAME:</label>
<input type="text" name="first_name" size="20" /><br />
<label for="last_name">LAST NAME:</label>
<input type="text" name="last_name" size="20" /><br />
<label for="email_address">EMAIL ADDRESS:</label>
<input type="text" name="email_address" size="60" /><br />
</fieldset>
<br />
<fieldset class="center">
<input type="submit" value="ENTER" />
<input type="reset" value="CLEAR & RESTART" />
</fieldset>
</form>
</div>
</body>
</html>
<?php
$name = @$_GET['first_name'];
$last = @$_GET['last_name'];
$email = @$_GET['email_address'];
if($name != '' AND $last != ''){
$file = $name . '.txt';
$fp = fopen($file,"w+") or die('errore nell\'apertura del file');
fwrite($fp,'First Name:' . $name, '\Last Name:' . $last, '\Email Address:' . $email);
fclose($file);
echo 'Data Saved SUCCESS';
}else{
echo 'Error';
}
?>
Spero che qualcuno possa darmi una mano d'aiuto
Grazie