<?php require_once('../autoload.php');

	$session = new session();
	$session->sessionStart();

	$db = new database();

	$x = VAR_PREDICTION_SCORE_MULTIPLIER;


	$data = prediction::get_data();
	$achievement = $db->query("SELECT IMAGE FROM ACHIEVEMENTS WHERE ID IN (69,70) ORDER BY ID");
	$week = $db->query("SELECT MAX(ID) AS ID FROM COMPETITIONS")[0]['ID'];
	$week_offset = (web_id() === 'UMK3') ? 2 : 3;
	$current_week = (($week+$week_offset) % 4) + 1;

	$html = new html('Прогнозы - неделя № ' . $current_week);
	$html->css('predictions.css');
	$html->head();
	$html->body();
	$html->custom('predictions');
	$html->foot(true);
	
?>