当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 4

LukeZhang / wss
暂停

forked from 小老虎 / wss
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
project_status.php 6.91 KB
一键复制 编辑 原始数据 按行查看 历史
陈学虎 提交于 2016-04-23 19:26 . 1.3.2版本提交
<?php require_once('config/tank_config.php'); ?>
<?php require_once('session_unset.php'); ?>
<?php require_once('session_admin.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ( empty( $_POST['pro_status_order'] ) ){
$pro_status_order = "'0'";
}else{
$pro_status_order = sprintf("%s", GetSQLValueString($_POST['pro_status_order'], "text"));
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO tk_status_project (task_status, task_status_display, task_status_pbackup1) VALUES (%s, %s, $pro_status_order)",
GetSQLValueString($_POST['task_status'], "text"),
GetSQLValueString($_POST['task_status_display'], "text"));
mysql_select_db($database_tankdb, $tankdb);
$Result1 = mysql_query($insertSQL, $tankdb) or die(mysql_error());
$insertGoTo = "project_status.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
mysql_select_db($database_tankdb, $tankdb);
$query_Recordset1 = "SELECT * FROM tk_status_project ORDER BY task_status_pbackup1 ASC";
$Recordset1 = mysql_query($query_Recordset1, $tankdb) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>WSS - <?php echo $multilingual_projectstatus_title; ?></title>
<script type="text/javascript" src="srcipt/jquery.js"></script>
<script type="text/javascript" src="srcipt/js.js"></script>
<link href="skin/themes/base/tk_style.css" rel="stylesheet" type="text/css" />
<link href="skin/themes/base/lhgcheck.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="srcipt/lhgcore.js"></script>
<script type="text/javascript" src="srcipt/lhgcheck.js"></script>
<script type="text/javascript">
<!--
J.check.rules = [
{name: 'task_status', mid: 'task_status_msg', requir: true, type: '', warn: '<?php echo $multilingual_default_required4; ?>'},
{name: 'task_status_display', mid: 'task_status_display_msg', requir: true, type: '', warn: '<?php echo $multilingual_default_required4; ?>'},
{name: 'pro_status_order', mid: 'pro_status_order_msg', type: 'rang', min: -1, warn: '<?php echo $multilingual_default_required5; ?>' }
];
window.onload = function()
{
J.check.regform('form1');
}
//-->
</script>
<script type="text/JavaScript">
<!--
function GP_popupConfirmMsg(msg) { //v1.0
document.MM_returnValue = confirm(msg);
}
//-->
</script>
</head>
<body>
<?php require('admin_head.php'); ?>
<table border="0" cellspacing="5" cellpadding="12" width="100%">
<tr>
<td width="200px" class="set_menu_bg" valign="top"><?php require('setting_menu.php'); ?></td>
<td >
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<table class="filter_table" border="0" cellspacing="0" cellpadding="0" >
<thead>
<tr>
<th colspan="2" ><?php echo $multilingual_projectstatus_new; ?></th>
</tr>
</thead>
<tbody>
<tr >
<td><?php echo $multilingual_projectstatus_name; ?>:<br />
<input type="text" name="task_status" id="task_status" value="" size="32" class="width-p80" /><span id="task_status_msg"></span></td>
<td><?php echo $multilingual_default_order; ?>:<br />
<input type="text" name="pro_status_order" id="pro_status_order" value="" size="32" /><span id="pro_status_order_msg"></span></td>
</tr>
<tr valign="baseline">
<td colspan="2" >
<?php echo $multilingual_projectstatus_style; ?>:<span id="task_status_display_msg"></span><br />
<textarea name="task_status_display" id="task_status_display" cols="50" rows="5" class="width-p80" ></textarea></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2" ><input type="submit" value="<?php echo $multilingual_global_action_save; ?>"
<?php if( $_SESSION['MM_Username'] == $multilingual_dd_user_readonly){
echo "disabled='disabled'";
} ?>
/></td>
</tr>
</tfoot>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form>
<p>&nbsp;</p>
<div class="taskdiv">
<table border="0" cellspacing="0" cellpadding="0" class="maintable">
<thead class="toptable">
<tr>
<th><?php echo $multilingual_projectstatus_name; ?></th>
<th><?php echo $multilingual_projectstatus_style; ?></th>
<th><?php echo $multilingual_default_order; ?></th>
<th colspan="2"><?php echo $multilingual_global_action; ?></th>
</tr>
</thead>
<?php do { ?>
<tr>
<td width="35%"><?php echo $row_Recordset1['task_status']; ?></td>
<td width="35%"><?php echo $row_Recordset1['task_status_display']; ?></td>
<td width="10%"><?php echo $row_Recordset1['task_status_pbackup1']; ?></td>
<td width="10%"><a href="project_status_edit.php?editID=<?php echo $row_Recordset1['psid']; ?>"><?php echo $multilingual_global_action_edit; ?></a></td>
<td width="10%">
<?php if ($totalRows_Recordset1 > 1 && $_SESSION['MM_Username'] <> $multilingual_dd_user_readonly) { // Show if recordset not empty ?>
<a href="#"
onclick="javascript:if(confirm( '<?php
echo $multilingual_global_action_delconfirm6; ?>'))self.location='project_status_del.php?delID=<?php echo $row_Recordset1['psid']; ?>';"
><?php echo $multilingual_global_action_del; ?></a>
<?php } else { // Show if recordset not empty ?>
<?php echo $multilingual_global_action_del; ?>
<?php } // Show if recordset not empty ?>
</td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</div>
</td>
</tr>
</table>
<?php require('foot.php'); ?>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/keenlove/wss.git
git@gitee.com:keenlove/wss.git
keenlove
wss
wss
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891