View file farm/sys/fnc/add_farm_event.php

File size: 182B
<?php
function add_farm_event($msg)
{
global $user;
mysql_query("INSERT INTO `farm_event` (`time`, `uid`, `msg`) VALUES 
('".time()."', '".$user['id']."', '".my_esc($msg)."')");
}
?>