| 12345678910111213141516171819202122232425262728293031 |
- <?php
- include_once 'Database.php';
- include_once 'WebFunctions.php';
- ?>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset='utf-8'>
- <meta http-equiv='X-UA-Compatible'>
- <title>Odds webspace</title>
- <meta name='viewport' content='width=device-width, initial-scale=1'>
- <link rel='stylesheet' type='text/css' media='screen' href='styles.css'>
- </head>
- <body>
- <h1> Odds better </h1>
- <?php
- $database = new Database();
- $matches = $database->getTodaysPrioMatches();
- $wf = new WebFunctions();
- $wf->createMatchTable($matches);
- ?>
- </body>
- </html>
|