mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-02 14:53:59 +01:00
Files added to put custom processes into, including events for: load, login fail, login, logout and new user
8 lines
254 B
PHP
8 lines
254 B
PHP
<?php
|
|
// Purpose: This file is run when a new user sets up
|
|
// Langs: PHP only
|
|
// Example:
|
|
// $fh = fopen(dirname(__FILE__)."/../user-access.log", 'a');
|
|
// fwrite($fh, "NEW >>> ".date("D dS M Y h:i:sa").": ".$_SESSION['username']."\n");
|
|
// fclose($fh);
|
|
?>
|