skin.board.webclap/update_hit.php
2024-10-21 11:30:54 +09:00

12 lines
355 B
PHP

<?php
//if (!defined("_GNUBOARD_")) exit;
include_once './_common.php';
if ($clap_max == 0 || ($clap_max > 0 && $cl_cnt < $clap_max)) {
sql_query("insert into {$g5['clap_table']}
set cl_ip='{$_SERVER['REMOTE_ADDR']}',
cl_date='" . date("Y-m-d H", strtotime(G5_TIME_YMDHIS)) . "'
");
}
if ($return_url)
goto_url($return_url);