You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function send_log($member_name, $remote_ip, $log, $printlog) {
include ("config.php.inc");
$ip = $HTTP_SERVER_VARS['REMOTE_ADDR'];
$timestamp = time();
mysql_query("insert into log (timestamp, member_name, ip, log) values('$timestamp','$member_name','$remote_ip','$log')") or die("log did not accept input.<br>".mysql_error());