|
|
|
<?php
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* @copyright (c) 2010 animegame.eu
|
|
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
include_once('char.inc.php');
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param unknown_type $title
|
|
|
|
* @param unknown_type $charid
|
|
|
|
* @param unknown_type $userid
|
|
|
|
* @return boolean if the insert was successful
|
|
|
|
*/
|
|
|
|
function insertIntoHallOfFame($title, $charid, $userid){
|
|
|
|
echo 'insertIntoHallOfFame('.$title.', '.$charid.', '.$userid.')<br>';
|
|
|
|
$row = mysqli_fetch_assoc(db_query('Select max(id) as round from online'));
|
|
|
|
$char = getChar($charid);
|
|
|
|
$user = mysqli_fetch_assoc(db_query('Select * from user where id = '.$userid));
|
|
|
|
|
|
|
|
if(!$row){
|
|
|
|
echo 'insertIntoHallOfFame failed as the basic methods failed!<br>';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return insertIntoHallOfFameFull($row['round'], $title, $charid, $char['name'], $userid, $user['nickname'], 'CURRENT_DATE');
|
|
|
|
}
|
|
|
|
|
|
|
|
function insertIntoHallOfFameFull($round = '', $title = '', $charid = '', $charname = '', $userid = '', $username = '', $date = ''){
|
|
|
|
echo 'insertIntoHallOfFame('.$title.', '.$charid.', '.$charname.', '.$username.', '.$userid.', '.$date.')<br>';
|
|
|
|
// These Entries may not be ''
|
|
|
|
if(!is_numeric($round) || $date == '' || $title == ''){
|
|
|
|
echo 'insertIntoHallOfFame failed as the extended methods failed!<br>';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$columns = 'art, runde, datum, charname, username';
|
|
|
|
$values = '\''.$title.'\','.$round.','.$date.',\''.$charname.'\',\''.$username.'\'';
|
|
|
|
|
|
|
|
if(is_numeric($charid)){
|
|
|
|
$columns .= ',charid';
|
|
|
|
$values .= ','.$charid;
|
|
|
|
}
|
|
|
|
if(is_numeric($userid)){
|
|
|
|
$columns .= ',userid';
|
|
|
|
$values .= ','.$userid;
|
|
|
|
}
|
|
|
|
$sql = 'INSERT INTO highscore('.$columns.') values('.$values.')';
|
|
|
|
// echo $sql.'<br>';
|
|
|
|
$qry = db_query($sql);
|
|
|
|
return db_affected_rows() > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getHallOfFame($title, $userid) {
|
|
|
|
$row = mysqli_fetch_assoc(db_query('Select max(id) as round from online'));
|
|
|
|
return getHallOfFameFull($row['round'],$title, $userid);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getHallOfFameFull($round = '', $title = '', $userid = '') {
|
|
|
|
$sql = 'select count(*) from highscore where runde='.$round.' and userid='.$userid;
|
|
|
|
$row = mysqli_fetch_row($sql);
|
|
|
|
return $row[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|