allora ho un sito e vorrei che quando i miei utenti mi contattano voglio che esce l'orario di quando mi ha inviato l'email, il codice php è questo grazie a chi mi aiuta
Codice PHP:
<?php
header ('Location:');
$handle = fopen("contattaci.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>