mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 07:13:59 +01:00
8 lines
285 B
PHP
8 lines
285 B
PHP
<?php
|
|
// Purpose: This file is run when a user saves a file, has $file and $fileLoc strings available to it
|
|
// Langs: PHP only
|
|
// Example:
|
|
// $fh = fopen(dirname(__FILE__)."/../file-saves.log", 'a');
|
|
// fwrite($fh, "save ".date("D dS M Y h:i:sa").": ".$file."\n");
|
|
// fclose($fh);
|
|
?>
|