mirror of https://github.com/BOINC/boinc.git
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
|
|
require_once("util.inc");
|
|
require_once("team.inc");
|
|
require_once("db.inc");
|
|
|
|
db_init();
|
|
|
|
$user = get_logged_in_user();
|
|
if (!strlen($_POST["name"])) {
|
|
page_head("Error");
|
|
echo "You must specify a name for your team.";
|
|
exit();
|
|
}
|
|
$query = sprintf(
|
|
"insert into team (userid, create_time, name, name_lc, url, type, name_html, description, country, nusers) values(%d, %d, '%s', '%s', '%s', %d, '%s', '%s', '%s', %d)",
|
|
$user->id,
|
|
time(),
|
|
$_POST["name"],
|
|
strtolower($_POST["name"]),
|
|
$_POST["url"],
|
|
$_POST["type"],
|
|
$_POST["name_html"],
|
|
$_POST["description"],
|
|
$_POST["country"],
|
|
1
|
|
);
|
|
|
|
$result = mysql_query($query);
|
|
if ($result) {
|
|
$teamid = mysql_insert_id();
|
|
Header("Location: team_display.php?teamid=$teamid");
|
|
} else {
|
|
page_head("Error");
|
|
echo "Couldn't create team - please try later.<br>\n";
|
|
echo "You may need to try a different team name.\n";
|
|
page_tail();
|
|
}
|
|
?>
|