-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmake_selection.php
More file actions
31 lines (27 loc) · 1.08 KB
/
Copy pathmake_selection.php
File metadata and controls
31 lines (27 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?
/***************************************************************************
* make_selection.php
* -------------------
* begin : Friday, Mar 28, 2008
* copyright : (C) 2008 J. David Baker
* email : me@jdavidbaker.com
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
include "includes/classes.inc.php";
// Makes the selection for the current team
// Only if admin!
if ($login->is_admin()) {
$player_id = $_POST['selection'];
$pick_id = $_POST['pick_id'];
make_pick($pick_id, $player_id);
}
header("Location: players.php");
?>