PHP
php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
date_default_timezone_set("America/Costa_Rica");
$myfile = fopen("names.txt", "w");
$login="\n Login Usuario ".date('l jS \of F Y h:i:s A');
fwrite($myfile, $login);
$logout="\n Logout Usuario ".date('l jS \of F Y h:i:s A');
fwrite($myfile, $logout);
fclose($myfile);
$read = file('names.txt');
foreach ($read as $line) {
echo $line ." ";
}
?>
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run