📄 del_research.php.svn-base
字号:
<?php
/**
* add_ship.php
*
* @version 1.0
* @copyright 2008 By Xire -AlteGarde-
*
*/
define('INSIDE' , true);
define('INSTALL' , false);
define('IN_ADMIN', true);
$xnova_root_path = './../';
include($xnova_root_path . 'extension.inc');
include($xnova_root_path . 'common.' . $phpEx);
if ($user['authlevel'] >= 2) {
includeLang('admin');
$mode = $_POST['mode'];
$PageTpl = gettemplate("admin/del_research");
$parse = $lang;
if ($mode == 'addit') {
$id = $_POST['id'];
$spy_tech = $_POST['spy_tech'];
$computer_tech = $_POST['computer_tech'];
$military_tech = $_POST['military_tech'];
$defence_tech = $_POST['defence_tech'];
$shield_tech = $_POST['shield_tech'];
$energy_tech = $_POST['energy_tech'];
$hyperspace_tech = $_POST['hyperspace_tech'];
$combustion_tech = $_POST['combustion_tech'];
$impulse_motor_tech = $_POST['impulse_motor_tech'];
$hyperspace_motor_tech = $_POST['hyperspace_motor_tech'];
$laser_tech = $_POST['laser_tech'];
$ionic_tech = $_POST['ionic_tech'];
$buster_tech = $_POST['buster_tech'];
$intergalactic_tech = $_POST['intergalactic_tech'];
$expedition_tech = $_POST['expedition_tech'];
$graviton_tech = $_POST['graviton_tech'];
$QryUpdatePlanet = "UPDATE {{table}} SET ";
$QryUpdatePlanet .= "`spy_tech` = `spy_tech` - '". $spy_tech ."', ";
$QryUpdatePlanet .= "`computer_tech` = `computer_tech` - '". $computer_tech ."', ";
$QryUpdatePlanet .= "`military_tech` = `military_tech` - '". $military_tech ."', ";
$QryUpdatePlanet .= "`defence_tech` = `defence_tech` - '". $defence_tech ."', ";
$QryUpdatePlanet .= "`shield_tech` = `shield_tech` - '". $shield_tech ."', ";
$QryUpdatePlanet .= "`energy_tech` = `energy_tech` - '". $energy_tech ."', ";
$QryUpdatePlanet .= "`hyperspace_tech` = `hyperspace_tech` - '". $hyperspace_tech ."', ";
$QryUpdatePlanet .= "`combustion_tech` = `combustion_tech` - '". $combustion_tech ."', ";
$QryUpdatePlanet .= "`impulse_motor_tech` = `impulse_motor_tech` - '". $impulse_motor_tech ."', ";
$QryUpdatePlanet .= "`hyperspace_motor_tech` = `hyperspace_motor_tech` - '". $hyperspace_motor_tech ."', ";
$QryUpdatePlanet .= "`laser_tech` = `laser_tech` - '". $laser_tech ."', ";
$QryUpdatePlanet .= "`ionic_tech` = `ionic_tech` - '". $ionic_tech ."', ";
$QryUpdatePlanet .= "`buster_tech` = `buster_tech` - '". $buster_tech ."', ";
$QryUpdatePlanet .= "`intergalactic_tech` = `intergalactic_tech` - '". $intergalactic_tech ."', ";
$QryUpdatePlanet .= "`expedition_tech` = `expedition_tech` - '". $expedition_tech ."', ";
$QryUpdatePlanet .= "`graviton_tech` = `graviton_tech` - '". $graviton_tech ."' ";
$QryUpdatePlanet .= "WHERE ";
$QryUpdatePlanet .= "`id` = '". $id ."' ";
doquery( $QryUpdatePlanet, "users");
AdminMessage ( $lang['adm_delresearch2'], $lang['adm_delresearch1'] );
}
$Page = parsetemplate($PageTpl, $parse);
display ($Page, $lang['adm_am_ttle'], false, '', true);
} else {
AdminMessage ( $lang['sys_noalloaw'], $lang['sys_noaccess'] );
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -