0byt3m1n1-V2
Path:
/
home
/
helpdesk
/
admin
/
[
Home
]
File: delete_priority.php
<?php require_once('../Connections/IT.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; } } if ((isset($_GET['id'])) && ($_GET['id'] != "")) { $deleteSQL = sprintf("DELETE FROM priority WHERE id=%s", GetSQLValueString($_GET['id'], "int")); mysql_select_db($database_IT, $IT); $Result1 = mysql_query($deleteSQL, $IT) or die(mysql_error()); $deleteGoTo = "add_priority.php"; if (isset($_SERVER['QUERY_STRING'])) { $deleteGoTo .= (strpos($deleteGoTo, '?')) ? "&" : "?"; $deleteGoTo .= $_SERVER['QUERY_STRING']; } header(sprintf("Location: %s", $deleteGoTo)); } $colname_DPRT = "-1"; if (isset($_GET['id'])) { $colname_DPRT = $_GET['id']; } mysql_select_db($database_IT, $IT); $query_DPRT = sprintf("SELECT * FROM priority WHERE id = %s", GetSQLValueString($colname_DPRT, "int")); $DPRT = mysql_query($query_DPRT, $IT) or die(mysql_error()); $row_DPRT = mysql_fetch_assoc($DPRT); $totalRows_DPRT = mysql_num_rows($DPRT); ?> <!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>Untitled Document</title> </head> <body> </body> </html> <?php mysql_free_result($DPRT); ?>
©
2018.