PHP:
1
2
3
4
5
6
7
8
9
| if (!file_exists("./data.php")) { touch("./data.php");} $update = date ("l F d Y H:i:s", filemtime("./data.php")); $time = date("l F d Y H:i:s"); if (!file_exists("./start.txt")) { $file_start = fopen("start.txt", 'w+b'); fputs($file_start, $update); fclose($file_start);} $start = file_get_contents("start.txt"); |
Deze code doet zn werk perfect op winxp, maar op linux werkt het niet
De bestanden wordt niet aangemaakt.
| Hardcore - Terror |