Więc mam taki kod, i chciałbym aby on co dziennie np. o 12:00 optymalizował tabele.
<?php if ( $board_config['tables_last_optimize'] < (CR_TIME - ($board_config['tables_optimize_interval'] * 24 * 3600)) ) { if ( $result = $db->sql_query('SHOW TABLE STATUS') ) { $tables = $db->sql_fetchrowset($result); { if ( $tables[$i]['Data_free'] != 0 ) { $for_optimize[] = $tables[$i]['Name']; } } { if ( !$db->sql_query('OPTIMIZE TABLE ' . $tables) ) { message_die(GENERAL_ERROR, 'Could not optimize tables', '', __LINE__, __FILE__, $sql); } } update_config('tables_last_optimize', CR_TIME); } } ?>