Example #1
0
/**
 * rank.php
 *
 * Riccardo Crippa
 * therickys93@gmail.com
 *
 * this file display the rank for a tournament
 */
// require all the files
require_once 'Matchup.inc.php';
require_once 'session.php';
// create an instanceof MUMatch
$match = new MUMatch();
// get the rank for a tournament
$rank = $match->getRank($_GET["tournament"]);
?>
 <!DOCTYPE html>
 <html>
 <head>
     <title>Classifica</title>
     <link rel="stylesheet" type="text/css" href="css/style.css" />
 </head>
 <body>
     <div class="header">
		<div class="content_left"><b>MatchUp</b></div>
		<div class="content_right">
			<ul>
				<li><a href="home.php">Profilo</a></li>
				<li><a href="tournaments.php">Torneo</a></li>
				<li><a href="logout.php">Esci</a></li>